Skip to content

Commit f2ce2ca

Browse files
authored
Update main.py
1 parent 78a3159 commit f2ce2ca

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def nth_fibonacci_util(n, memo):
2929
memo[n] = nth_fibonacci_util(n - 1, memo) + nth_fibonacci_util(n - 2, memo)
3030

3131
return memo[n]
32+
new pr
3233

3334

3435
# Wrapper function that handles both initialization

0 commit comments

Comments
 (0)