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.
There are also better practices than reduce out there, like using
math.prod
in cases like this, as it's a lot more readable.it just actually that one percent:)
I was trying to implement your solution in Python 3 since it looked very cool. But I found out reduce has been removed from Python 3 and the comment is:
Removed reduce(). Use functools.reduce() if you really need it; however, 99 percent of the time an explicit for loop is more readable.
Does this mean that although reduce looks cool, it actually sucks?