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 error does not try to tell you that tests think you are cheating. On the contrary, there are some tests titled "No cheating!" (maybe not the most fortunate title for a test group), and all of them pass. It means that tests did not detect any disallowed things in your solution.
The error you get is indeed not really clear. I was able to reproduce it returning
None
from my solution, so I expect you have some branch in your code which falls off the function without returning anything.That's not cheating. The tests in that kata check that you're not using
eval
and similar work-arounds.