algorithms/camelcase
sundowndev cb7b3d0ed6 feat: add even number problem 2020-12-09 13:09:50 +04:00
..
camelcase.go feat: add even number problem 2020-12-09 13:09:50 +04:00
readme.md add previous solutions 2020-11-18 19:48:31 +01:00

readme.md

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