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.
Check where whitespace is added, you may have one in the end of the string.
Had the same problem. I used print instead of return -.-
Printing is not a trivial thing here on CodeWars, as the program output is displayed as HTML, not plain text. In situations like this, I may suggest the following:
repr()
, notstr()
, and do not rely on automatic string conversion.<pre>
tag..replace('<', '<')
, as<
often occurs in Python output when printing object instances and stack traces.