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.
SQL systems are weird in how they handle NULLs. You can't just "SELECT x FROM table1 WHERE y is NULL", you have to instead find a way to exclude all non-null values. Annoying, but I've just learned to accept it.
Remember that an 88-key piano starts at A, not C. That threw me off
Way late here, but for anyone else reading this: An <odd> % 2 == 1, and an <even> % 2 == 0, both of which can be interpreted as the boolean True (1) and False (0) in Python, respectively. So line 3 is essentially saying odd = True, even = False.
This comment is hidden because it contains spoiler information about the solution
Extremely easy kata with extremely bad wording. Also, the singular form of "dice", is "die", which would have made this kata less confusing.
This is a frequent solution for more complicated strings
madman
I think it does flex your programming skills in the sense that it requires you to find the simplicity in a seemingly complex problem. Programming is not only about writing code to execute processes, it is working out what are the optimal processes to perform.
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution