Jul 4, 2024
n = 3
f(0) = 1
f(1) = 1
f(n) = f(n-1) + f(n-2)
fib(n) = fib(n-1) + fib(n-2)
O(log n)
Full transcript