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.
@Nova-Striker, shifting
eu
by 10 characters will still returneu
.This comment is hidden because it contains spoiler information about the solution
That is understood , but why the first word
eu
did not becomeue
?In step 2, you rotate the entire string (sans spaces) by
10
characters. In step 4, you do the same but for each individual word; here, "word" means a group of consecutive non-space characters.As an example, in step 3 we see the last word is
tinventth
. If you rotate by10
characters, you gethtinventt
.