Really enjoy it when solutions are readable and easy to understand.
title() just capatilizes each starting letter of every new word. The dash does not count as a word; so every new letter that it encounters after the dash or any other symbol that does not represent a letter, it capitalizes.
This comment is hidden because it contains spoiler information about the solution
Brilliant!
I like this solution. Very readable.
Efficient and Readable. That's all you need.
Clean and readable.
Efficient and readable. Awesome!
Like this solution. Very readable.
Nice! What are these shorthand versions called? I've been learning about list comprehension and this seems to follow the same sort of pattern.
Loading collection data...
Really enjoy it when solutions are readable and easy to understand.
title() just capatilizes each starting letter of every new word. The dash does not count as a word; so every new letter that it encounters after the dash or any other symbol that does not represent a letter, it capitalizes.
This comment is hidden because it contains spoiler information about the solution
Brilliant!
I like this solution. Very readable.
Efficient and Readable. That's all you need.
This comment is hidden because it contains spoiler information about the solution
Clean and readable.
Efficient and readable. Awesome!
Like this solution. Very readable.
This comment is hidden because it contains spoiler information about the solution
Nice! What are these shorthand versions called? I've been learning about list comprehension and this seems to follow the same sort of pattern.