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.
I agree, I see no point in putting other types' values like '' or True in a Sudoku board...
Exactly what I did! Worked like a charm.
I think that at least for python the [[True]] board is supposed to be valid. After all bool is a subclass of int and [[1]] is valid as well. So imho all boards [[x]] with x==1 ==> True should also be true. Apart from my favourite kata so far
I used isinstance(bool) to pass the test, but not sure if there is any better way