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.
approved.
C Translation (author inactive)
Approved
Python new test framework
Yes, avoid it ever becoming a large number!
Lol I've done 119 Kata and this is the first time I had to forfeit to reveal the answer because I was close to tears.
Fibonacci sequence is specified as
1, 1, ..
, but index is not specified as 1-based with this Fibonacci sequence. ( It would make sense to switch to 0-based indices, like almost all programming languages use, and the0, 1, ..
-based sequence. This would not invalidate existing solutions. )The example tests have no tests with small indices. This would help find off-by-one errors early and easily.
Indices are 1-based.
C/C++ should be added
Indeed. You need to do without it, and actually it's really not necessary :)
This comment is hidden because it contains spoiler information about the solution
I spent hours to solve this kata. It was interesting. But i think my solution is not optimized.
Thanks, but I think I already used one to cache the fibonacci sequence.
yeaa a lookup table or list will me much faster ~~
This comment is hidden because it contains spoiler information about the solution
Loading more items...