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.
It's not. This code is an old (wrong) one. It worked at that time because the different files involved in a python kata where "brutally" merged together before execution, so preloaded, solution and tests parts where actually in the same global scope. And since the inputs are all defined at the root of file of the tests, using the same name than the argument of the function, that worked while being effectiveley totally wrong (You can check in the fork panel, it throws a NameError).