You are viewing a single comment's thread. Return to all comments →
Recursive method, one-liner Python, passed all test cases
return fibonacci(n-1) + fibonacci(n-2) if n > 1 else 1 if n == 1 else 0
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 →
Recursive method, one-liner Python, passed all test cases