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.
No, the computer will exit the function after it executes one of the return statements, so there is no danger that it will try to return multiple values.
I believe this must be the worst attempt at this kata. I'm sorry you have to look at this.
I was always told to break a switch statement rather than having multiple returns in one function. Isn't there a chance that with multiple returns the code might crash?
I didn't know you have to put the result variable at the end if it has to do something with the loop. Thank you
You've set the value of result at the top but not recalculated it after the loop. Also, your code is missing a curly bracket...
This comment is hidden because it contains spoiler information about the solution