Skip to content

Instantly share code, notes, and snippets.

@iJustErikk
Last active December 4, 2020 17:08
Show Gist options
  • Save iJustErikk/dc100268e35b29862159754e32dee0ee to your computer and use it in GitHub Desktop.
Save iJustErikk/dc100268e35b29862159754e32dee0ee to your computer and use it in GitHub Desktop.
def naive_fibbo(n):
if (n <= 2): return 1
return naive_fibbo(n-1) + naive_fibbo(n-2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment