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 found the solution, for my case, my counter was initialized outside of the function and I return the value of it when the condition in the question has been met.
So when the tests runs the function the value of the counter stays the same after you called it for the first time, the test doesn't reset your counter. That's the reason why my kind of recursion doesn't work.
Probably you're doing it wrong, there are plenty solutions using recursion in javascript.
I'm using javascript, recursion function still doesn't work. It's frustrating.
It won't work there either if you call your function several times with different input values like in the tests.
used global variable as counting step on my recursion...didnt work
but it works on jupyter notebook. Any help would be apperciated.
Mr you should run in debug mode
I had the same problem
Check type of value probably you need some pars methods
You should ask on CW discord (check forum section on the left), faster response time there.
Guys. I tried to code this task using a recursion. But my variable, what counting a steps, always change because of recursion. Someone can help me with that?