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.
same here hahaha
Perhaps it is not necessary to convert p to be a string?
Thanks! Suddenly it works when I replace "\s" with a plain space. (But surely the more terrible thing is I need to figure out why it works. :p)
The problem is with how you're using "\s".
This comment is hidden because it contains spoiler information about the solution
You have to reverse words longer than 4 characters. The description is quite clear, try to read it a few more times :/
I am using JavaScript and I have passed the sample test, but when I "attempt", it cannot pass. Some examples of the failed attempts:
expected 'og bvfay bgwuwegua' to equal 'bgwuwegua bvfay go'
expected 'vznggzimwujo ueygizjhwt pmmazmgcyopa' to equal 'pmmazmgcyopa ueygizjhwt vznggzimwujo'
expected 'hzrmlncyotc r' to equal 'r hzrmlncyotc'
Not sure if I have misunderstood the errors, it seems that I have to reverse the whole phrase by words (but not by letters)? But I cannot see such requirement in the instructions.
Hope to get some hints, thanks.