Skip to content

Latest commit

 

History

History

camelcaseMethod

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

CamelCase Method

6 kyu link to kata
my solution

Write simple .camelCase method (camel_case function in PHP, CamelCase in C# or camelCase in Java) for strings. All words must have their first letter capitalized without spaces.

For instance:

"hello case".camelCase() => HelloCase
"camel case word".camelCase() => CamelCaseWord

Don't forget to rate this kata! Thanks :)