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.
not true, at least for new python versions.
a or b
is evaluated to a if a is truthy and to b otherwise (doesnt matter the value of b).now, for ints that are not 0 this expression will always equal a, and b is never checked, since such numbers are truthy. this means, the kata code most likely indeed doesnt work as intended by authors