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.
Also, floor division (integer division) is faster than true division
yeah, you're right. Thanks :)
Because of imprecisions, you could get 54.9999999999 which is not equal to 55.
This comment is hidden because it contains spoiler information about the solution
This was a python 2 solution, where
/
is floor division; in python 3//
is the floor division operator.when im doing that i get wrong answers on randomly chosen tests, each time different tests. For some reason i have to use // instead of /, then it always works
You shouldn't use time to time functions, use the timeit module.