Created
October 13, 2020 05:28
-
-
Save aershov24/1cdbf4c16f585d728243f7ed20c1afc8 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 SubFib(startNumber, endNumber): | |
for cur in F(): | |
if cur > endNumber: return | |
if cur >= startNumber: | |
yield cur | |
for i in SubFib(10, 200): | |
print i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment