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
The test cases (not the example ones, the ones that get run when you press 'submit') don't work in Python 3. They use
print
as a statement rather than as a function. Should be easy enough to fix while maintaining Python 2 compatability:and then use
print(x)
instead ofprint x
.It's dumb that the function has to return a word instead of a number. It doesn't make the challenge any harder, it just makes it more annoying and adds a bunch more unnecessary typing.
The parameter really shouldn't be called
obj
in Elixir. Elixir has no objects of any kind.