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