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.
Add some prints to debug your code, and some counters to make sure your loops end. You'll see you have infinite loops. It fails with the first sample test if you want to try.
Ah correct, I was calling the function instead of returning the function call. Everything passes, thank you
Yes, if you print the value to the console but the recursion came back as undefined is because you aren't returning the call to the function normally.
Can you explain how you came to that conclusion?
You're doing recursion wrong.
It's not time complexity, your code has infinite loops.
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
thx!
return;
return what?And your code will fail with bigger values, read this again:
spoiler flag, please.
This comment is hidden because it contains spoiler information about the solution