Example #1
0
 public int[] TestarrayReplace(int[] inputArray, int elemToReplace, int substitutionElem)
 {
     return(ArcadeIntro6.arrayReplace(inputArray, elemToReplace, substitutionElem));
 }
Example #2
0
 public bool TestevenDigitsOnly(int n)
 {
     return(ArcadeIntro6.evenDigitsOnly(n));
 }
Example #3
0
 public string TestalphabeticShift(string inputString)
 {
     return(ArcadeIntro6.alphabeticShift(inputString));
 }
Example #4
0
 public bool TestvariableName(string name)
 {
     return(ArcadeIntro6.variableName(name));
 }
Example #5
0
 public bool TestchessBoardCellColor(string cell1, string cell2)
 {
     return(ArcadeIntro6.chessBoardCellColor(cell1, cell2));
 }