public int TestsquareDigitsSequence(int a0)
 {
     return(LabyrintNestedLoops.squareDigitsSequence(a0));
 }
 public int TestcomfortableNumbers(int L, int R)
 {
     return(LabyrintNestedLoops.comfortableNumbers(L, R));
 }
 public int TestpagesNumberingWithInk(int current, int numberOfDigits)
 {
     return(LabyrintNestedLoops.pagesNumberingWithInk(current, numberOfDigits));
 }
 public int[] TestweakNumbers(int n)
 {
     return(LabyrintNestedLoops.weakNumbers(n));
 }
 public int TestrectangleRotation(int a, int b)
 {
     return(LabyrintNestedLoops.rectangleRotation(a, b));
 }
 public void TestcrosswordFormation2(ComplexTest <string[], int> test)
 {
     Assert.AreEqual(test.ExpectedResult, LabyrintNestedLoops.crosswordFormation(test.Input));
 }
 public bool TetsisPower(int n)
 {
     return(LabyrintNestedLoops.isPower(n));
 }
 public int TestisSumOfConsecutive2(int n)
 {
     return(LabyrintNestedLoops.isSumOfConsecutive2(n));
 }