Last active
December 4, 2020 17:08
-
-
Save iJustErikk/dc100268e35b29862159754e32dee0ee to your computer and use it in GitHub Desktop.
This file contains 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 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