Esempio n. 1
0
 public int TestnumbersGrouping(int[] a)
 {
     return(MirrorLake.numbersGrouping(a));
 }
Esempio n. 2
0
 public int TestmostFrequentDigitSum(int n)
 {
     return(MirrorLake.mostFrequentDigitSum(n));
 }
Esempio n. 3
0
 public void TestdifferentSquares(ComplexTest <int[][], int> test)
 {
     Assert.AreEqual(test.ExpectedResult, MirrorLake.differentSquares(test.Input));
 }
Esempio n. 4
0
 public int TestnumberOfClans(int[] divisors, int k)
 {
     return(MirrorLake.numberOfClans(divisors, k));
 }
Esempio n. 5
0
 public int TeststringsConstruction(string A, string B)
 {
     return(MirrorLake.stringsConstruction(A, B));
 }
Esempio n. 6
0
 public bool TestisSubstitutionCipher(string string1, string string2)
 {
     return(MirrorLake.isSubstitutionCipher(string1, string2));
 }
Esempio n. 7
0
 public int TestcreateAnagram(string s, string t)
 {
     return(MirrorLake.createAnagram(s, t));
 }
Esempio n. 8
0
 public int TestconstructSquare(string s)
 {
     return(MirrorLake.constructSquare(s));
 }