Question: Java code please Java code please. Recursion!!! Write a recursive method named moveToEnd that accepts a string 's' and a character as parameters, and returns
Java code please
Java code please. Recursion!!! Write a recursive method named "moveToEnd" that accepts a string 's' and a character as parameters, and returns a new string similar to 's but with all instances of c moved to the end of the string. The relative order of the other characters should be unchanged from their order in the original string 's. If the character is a letter of the alphabet, all occurrences of that letter in either upper or lowercase should be moved to the end and converted to uppercase. If's does not contain c, it should be returned unmodified. 46 47 48 49 500 51 52 53 54 } 55 // takes a string and a character as parameters and returns // the string with all copies of the character moved to the // end and capitalized // See the README public static String moveToEnd(String s, char c) { return; } 5
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
