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.
A bit of thought shortcut on my part, what I meant is that if you understand what this kata is about answer to your question is trivial, but without you stating what you know and what you don't, there's no way to tell what explanation you expect.
Read this paragraph of FAQ to see what input causes your solution to fail, and then reproduce the failing test case locally and debug through it in your IDE.
Curently your solution fails for input
[n, w, n, w, n, w, n, w, n, w]
, (it returnstrue
, but should returnfalse
) but when you fix this one, there will be probably other problems.Read this: https://github.com/codewars/codewars.com/wiki/Troubleshooting-your-solution#print-input
Your code fails with walks like this for instance:
'n','n','n','n','n','w','w','w','w','w'
.This comment is hidden because it contains spoiler information about the solution