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
This comment is hidden because it contains spoiler information about the solution
Codewars supports using Markdown for formatting text in discussions. Here's the syntax, including one for code blocks.
For this kata, you don't need to necessarily convert the scores from string to number since scores will never exceed 4.
"4" > "2"
Conversion is best practice though because string comparison behaves differently than numeric comparison if the numbers are more than 1 digit.
"9" > "10"
This StackOverflow answer explains this behavior clearly.
This comment is hidden because it contains spoiler information about the solution