Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
This comment is hidden because it contains spoiler information about the solution
Is there a name to this math problem?
The description example must be included in sample tests for all languages.
Because they are not in
dictionary
.when testing the for 'a' input the return is ['abnormal', 'arm-wrestling', 'absolute', 'airplane', 'airport']
why isnt 'amazing' or 'apple' in the list?
Thanks
That rule is specifically about the first word. All the following words are in title case no matter what.
apple-banana_mango
→appleBananaMango
(apple
was not capitalized, so it remains uncapitalized)Apple-Banana_Mango
→AppleBananaMango
(Apple
was capitalized, so it remains capitalized)what does it mean when it say that the word should be capitalized ONLY if the original word was capitalized?
My confusion is that in the example "the-stealth-warrior" gets converted to "theStealthWarrior". The original "stealth warrior" is lower case but the output is Upper case.