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 see, interesting.
Understood, thanks.
There is no test with that length, you're printing several tests input as one.
(Java)
Test input with array size 51 returns false but fails test because test expects true. Array from log:
char[] walk = {'n', 'n', 's', 'n', 's', 'n', 's', 'n', 's', 'n', 's', 'n', 's', 'n', 's', 'n', 's', 'e', 'w', 'n', 's', 'e', 'w', 'n', 's', 'e', 'w', 'n', 's', 'e', 'w', 'n', 's', 'n', 's', 'n', 's', 'n', 's', 'n', 'n', 'e', 'e', 'e', 'w', 'n', 's', 'n', 's', 'e', 'w'};
False should be correct return, right?
It matters when the strings have different size.
See?
This comment is hidden because it contains spoiler information about the solution
Nice job, very quick!
I understand now, thanks!
When n is 1, you have to return the first element of the signature.
This comment is hidden because it contains spoiler information about the solution
For the Java Kata:
does the return have to be "return new String[] {};" or can it be implemented as long as a String[] is returned?