Example #1
0
 static bool TestCase6()
 {
     return(StringUtils.AreMutations("", "") == true);
 }
Example #2
0
 static bool TestCase3()
 {
     return(StringUtils.AreMutations("abc", "bcd") == false);
 }
Example #3
0
 static bool TestCase5()
 {
     return(StringUtils.AreMutations("bcac", "abc") == false);
 }
Example #4
0
 static bool TestCase2()
 {
     return(StringUtils.AreMutations("abc", "bca") == true);
 }