示例#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);
 }