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.
Carefully read the example in the description. It is there!
Thank you! Yeah, I spent some time on it and finally just clicked to see the solution.
This is for the fixed test where the input is the empty string
""
.For this test, your code currently returns an empty list -
[]
- but the kata in fact wants you to return a list with an empty string inside it, like this -[""]
.I personally agree that it's not very logical (and so do many other people if you read the entire Discourse page below) but that's what the kata wants in this case.
So you can "hard code" this particular input value, and you should be able to pass the rest of the kata.
This comment is hidden because it contains spoiler information about the solution