We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78a3159 commit e0c82f2Copy full SHA for e0c82f2
main.py
@@ -34,6 +34,7 @@ def nth_fibonacci_util(n, memo):
34
# Wrapper function that handles both initialization
35
# and Fibonacci calculation
36
def nth_fibonacci(n):
37
+ # some change
38
39
# Create a memoization table and initialize with -1
40
memo = [-1] * (n + 1)
0 commit comments