Created
October 13, 2020 05:28
-
-
Save aershov24/0eba3157320e085ec3b5f0b85a891a66 to your computer and use it in GitHub Desktop.
Markdium-14 Fibonacci Interview Questions (SOLVED) To Brush Before Coding Interview
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def fib_iterative(n): | |
| a, b = 0, 1 | |
| while n > 0: | |
| a, b = b, a + b | |
| n -= 1 | |
| return a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment