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