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.
Forgot to change the variable name - supposed to be "look_for_odds" :)
Why are the test functions here different from the ones in all the other kata?
This comment is hidden because it contains spoiler information about the solution
"Failed to move punctuation" triggers on an additional tiny "snag" that came up out of nowhere and bit me in the ass - namely, multiple leading vowels.
I'm working on a solution that takes that into account, but you might want to make a note of it in the description. :)
"? true : false" is redundant. You're basically saying "if x is true, return true, if x is false, return false" - when you could be returning x directly :)
This comment is hidden because it contains spoiler information about the solution
The instructions on how to calculate the fibonacci sequence are a little unclear. (n - 1) + (n - 2) appears to be some addition and subtraction. The calculation is really fib(n - 1) + fib(n - 2)
Thank you for your feedback. I guess old habits die hard. I will edit my solution now :)
Timeout while doing test
I've changed the description.
Thanks for the feedback.
Since this has a couple of Best Practices votes... I'd just like to point out this.
The phrasing isn't really correct. fib(n) is not n-1 + n-2, but fib(n-1) + fib(n-2)