X1663: makeCamelCase

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 Answer:

Reset

Practice a different Java exercise

Feedback

Your feedback will appear here when you check your answer.