Fibonacci in Python — def fib(n): a, b = 1, 1 for i in range(1, n): a, b = b, a + b return a
G
1.2K
Google Interview
This flashcard deck made by jwasham contains knowledge about google interview. For more details, please follow https://github.com/jwasham/google-interview-university