You are viewing a single comment's thread. Return to all comments →
def fibonacci(n): a, b = 1, 1 for _ in range(n - 1): a, b = b, a + b return a
Seems like cookies are disabled on this browser, please enable them to open this website
Recursion: Fibonacci Numbers
You are viewing a single comment's thread. Return to all comments →
def fibonacci(n): a, b = 1, 1 for _ in range(n - 1): a, b = b, a + b return a