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.
My python solution runs through all the tests, but the last one of the suite. The test says that the count should be 30, but mine does it in 29 iterations of calculating a new x. It's only in the last test is there a mistake in the last test?
Test.assert_equals(int_rac(835871232077058, 1), 30)??
When i tried a simple if statement work around, the test suddenly wants 29 :O
Absolute are not integers. Meaning: abs(-0.5) or abs(0.5) both equals to 0.5.