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.
Double duplicate :(
First I thought: oh_no_not_another_fibonacci_kata * oh_no_not_another_fizzbuzz_kata
Then I realized that it wasn't quite that simple.
Thanks for the fun!
Obsolete issue, closing
Approved
python new test framework
Very nice!
arrow function ate
No, that depends on the definition. Not a kata issue.
Read this
0, 1 (not 1, 1,)
My bad. I solved it.
I think there are sample tests for Python which have FizzBuzz, aren't they
No FizzBuzz in the test results for Python. Only Fizz and Buzz.
You are supposed to generate the values of the Fibonacci sequence up to
n
terms (heren=5
is the input).This means - starting at 1 -
[1,1,2,3,5]
.If you are having problems with this, you should read any resource on the Fibonacci sequence - for example:
Fibonacci number on wikipedia
Then you must consider the elements you obtained, and replace those that are divisible by
3
or by5
according to the other rules mentioned in the description.fibsFizzBuzz(5),[ 1, 1, 2, 'Fizz', 'Buzz' ]
How we got 1, 1, 2?
i love codewars
Loading more items...