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.
Examples:
makeCamelCase("hello World") -> "helloWorld"
makeCamelCase("h E L L O") -> "hELLO"
makeCamelCase("at The End") -> "atTheEnd"
Your feedback will appear here when you check your answer.