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.
The problem is with big numbers: first a float division is made, and then only
math.floor
is applied to the result, but floats have a limited precision, so the final result is wrong. You can find more details there: https://python-forum.io/thread-9009.htmlcan someone explain me why is // work but floor import from math have totally different results?