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.
This comment is hidden because it contains spoiler information about the solution
Agreed. For instance, how many possible integers are contained between each period in an IP address? I do not know of the top of my head.
I had this same issue in Python. This test is the issue:
Test.assert_equals(race(820, 850, 550), [18, 20, 0])
My math (same as above math) calculates59.99999999999574
seconds, which if stored with less precision would return60
if converted toint
. I think that test should just be removed or altered slightly so as to not produce an amount of seconds so close to 60.