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.
I wrote the Kata in python and when I run the test, my solution doesn't pass a case, in particular, the test did is testing(revrot("123456987654", 6), "234561876549") although the response of my solution is "234561876549" the assert message showed is: '234561234561' should equal '234561876549', I don't understand why the test take the parameter "234561234561" when should be "123456987654". Could someone explain which is the behavior of the test?