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.
Description has a rounding error.
Ah, good to know, guess I'll stick with my habit of wrapping things with int() then. Thanks!
FWIW it looks like this beast uses a 2.7 flavour of python: http://www.codewars.com/docs/python-environment but it's still good to know of these changes in later versions of python.
Hrm, that's weird, here's my output with ipython:
int() will already 'floor', so the use of floor is redundant?
I used int but just now realized that too wasn't necessary since:
It's only when you specify it as a float that it will return a float:
Maybe you missed this requirement?: (we arbitrarily only allow lowercase letters)
This comment is hidden because it contains spoiler information about the solution