Created
May 17, 2023 11:43
-
-
Save bbelderbos/c2b12819de6f9778c1cf7536fb364730 to your computer and use it in GitHub Desktop.
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
import functools | |
@functools.cache | |
def fib(n): | |
if n < 2: | |
return n | |
return fib(n-1) + fib(n-2) | |
fib(35) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment