Skip to content

Instantly share code, notes, and snippets.

@aershov24
Created October 13, 2020 05:28
Show Gist options
  • Select an option

  • Save aershov24/4962d16f1b08ba9ee6c8817604e31015 to your computer and use it in GitHub Desktop.

Select an option

Save aershov24/4962d16f1b08ba9ee6c8817604e31015 to your computer and use it in GitHub Desktop.
Markdium-14 Fibonacci Interview Questions (SOLVED) To Brush Before Coding Interview
def F():
a,b = 0,1
while True:
yield a
a, b = b, a + b
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