Ad
  • Custom User Avatar

    No, there is no n0:

    when given a number n (n >= 1 ), returns the nth number in the Fibonacci Sequence.

    1st = 0
    2nd = 1
    3rd = 1
    4th = 2
    

    Like it's shown in the kata's description.

  • Default User Avatar

    This comment is hidden because it contains spoiler information about the solution