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.
Already done by someone
You need to delete the comment section. Then it must work.
You mean the last sample test in Python, right?
This comment is hidden because it contains spoiler information about the solution
Please use spoiler flag next time. Anyone is able to read your comment from the dashboard.
Yes, the boolean is a 1 bit integer, subclass of int, so you can use boolean itself as an index too for example ["apple", "orange"][True] will return with "orange". And if you add booleans the product will be an integer.
False + False = 0
False + True = 1
True + True = 2
Etc...