public int TestgrowingPlant(int upSpeed, int downSpeed, int desiredHeight)
 {
     return(ArcadeIntro9.growingPlant(upSpeed, downSpeed, desiredHeight));
 }
 public int TestknapsackLight(int value1, int weight1, int value2, int weight2, int maxW)
 {
     return(ArcadeIntro9.knapsackLight(value1, weight1, value2, weight2, maxW));
 }
 public int TestdigitDegree(int n)
 {
     return(ArcadeIntro9.digitDegree(n));
 }
 public string TestlongestDigitsPrefix(string inputString)
 {
     return(ArcadeIntro9.longestDigitsPrefix(inputString));
 }
 public bool TestbishopAndPawn(string bishop, string pawn)
 {
     return(ArcadeIntro9.bishopAndPawn(bishop, pawn));
 }