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.
Instructions too vague. Remove language "such as" or anything suggestive. Be specific as to what you are looking for.
It seems that your answer is '234561234561' but the good answer is "234561876549" (read the description where this example is shown). The test compares your answer (called "actual" in the test) and the good answer (called "expected" in the test). The test doesnt' give the parameter that is used. If you want to know it use a "print(strng)" in your code. Google "python assertequal" and you will have more explanations.
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?