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.
if your getting mad at that don't look at mine
This comment is hidden because it contains spoiler information about the solution
I dont' know where you get that from. Here
enumerate
doesn't make sense since we only need the indexes, so it would generate an useless additional variable on each iteration. The purpose ofenumerate
is to provide at the same time an index and the variable at that index. If you don't need both, there is nothing pythonic in using it.Why?