π³ Recursion TreeI branch into fib(k-1) and fib(k-2) every single time β unless the cache already has the answer. Then I don't branch at all.
ποΈ Cache BoxOnce I hold fib(k), I hold it forever during this run. Every future call asking for that exact k gets redirected straight to me β instantly.
Pick a level above to begin.