1
0
dust/bench/fibonacci/fibonacci.py

11 lines
140 B
Python
Raw Normal View History

2024-11-17 20:32:53 -05:00
def fib(n):
if n == 0:
return 0
elif n == 1:
return 1
else:
return fib(n-1) + fib(n-2)
print(fib(25))