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.
This comment is hidden because it contains spoiler information about the solution
bem vindo ao clube kkkk
This comment is hidden because it contains spoiler information about the solution
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
This comment is hidden because it contains spoiler information about the solution
The last bullet point of this paragraph could be helpful: https://github.com/codewars/codewars.com/wiki/Troubleshooting-your-solution#when-i-print-my-answer-it-looks-exactly-the-same-as-the-expected-output-yet-tests-fail
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
You have a typo
lenght
and there is no such thing aswalk['n']
.This comment is hidden because it contains spoiler information about the solution