From e0c82f286a8e18f670f331990b8620466446db1d Mon Sep 17 00:00:00 2001 From: Arvind Shelke Date: Wed, 23 Apr 2025 12:49:54 +0530 Subject: [PATCH] Update main.py --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index 7582e26..e630425 100644 --- a/main.py +++ b/main.py @@ -34,6 +34,7 @@ def nth_fibonacci_util(n, memo): # Wrapper function that handles both initialization # and Fibonacci calculation def nth_fibonacci(n): + # some change # Create a memoization table and initialize with -1 memo = [-1] * (n + 1)