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 generates random tests so it is possible to "get lucky". To know for sure you might want to look at the failed test cases.
Oh, I see. I messed up the example test case check. I fixed it now so that order doesn't matter. The hidden test cases don't worry about order.
Can you give me an example of something you think should pass but doesn't? I am only checking to see if the decoded message is in the list of possibles you return.
I fixed the rotn problem.
decode accepts a string and returns a list as shown in the examples.
My bad. Is fixed now.
The last line of the discription says [ FIVE, 11, 'THREE', 13] but should say [ 'FIVE', 11, 'THREE', 13]
You might want to indicate which test cases are testing the "in-place" requirement. Nice Kata!
Nice!
I think the description could be a little bit longer. An example would be helpful. If it wasn't for the provided test code, one wouldn't know to return the numbers in a string seperated by spaces.