0
/ 1
Given a string, compute recursively a new string where a space is removed and the next letter is converted to uppercase.
So given "Hello...
Given a string, compute recursively a new string where a space is removed and the next letter is converted to uppercase.
So given "Hello World", return "HelloWorld".
The method Character.isUpperCase(char) can be used
to check if a letter is uppercase.
Your feedback will appear here when you check your answer.