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.
If the original message contains several spaces in a line, this code will remove them. Thus, the code does not replace each initial letter of the word with a capital one, but also changes the length of the line, which is not part of the task
Pretty much my approach to "Jaden case" lol
This comment is hidden because it contains spoiler information about the solution
Better to use text.lower() instead of creating an upper_alpha.
Make it a one-liner by adding return directly ! (Instead of assigning it to a variable)
This comment is hidden because it contains spoiler information about the solution
smooth
Assigning constants will make your code look longer and less clean. Try adding the number or character directly into your main code.
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Lord
Lord
Feels like using map makes it faster
Excellent solution.
I used map instead of for, any advantage?
This comment is hidden because it contains spoiler information about the solution