Memoized fibbonacci even better

Signed-off-by: Xe Iaso <me@christine.website>
This commit is contained in:
Cadey Ratio 2022-04-24 23:54:04 +00:00
parent a054c1673e
commit c8430d6081
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ func TestMemoizedFib(t *testing.T) {
return result
}
t.Log(Fib(40))
t.Log(fib(40))
}
func TestThunkFib(t *testing.T) {