From c9e6e353814f30a0685c104c46a75811f586ac71 Mon Sep 17 00:00:00 2001 From: roopakiranb Date: Wed, 24 Sep 2025 21:03:07 +0530 Subject: [PATCH] Added Roopa Kiran's learnings to Course3 --- Course3 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Course3 b/Course3 index 6ebe1c1f..e36d6dc7 100644 --- a/Course3 +++ b/Course3 @@ -5,7 +5,7 @@ You can choose one module from the list below:- 3)Dynamic Programming -Pawan Dubey -Dynamic Programming -Understanding the prolem and implementing a solution which is space and time efficient by structuring it into sub problems. +Name: Roopa Kiran +Module: Dynamic Programming +In the Dynamic Programming module, I learned how to solve complex problems efficiently by breaking them into smaller subproblems. The key takeaway was understanding how overlapping subproblems and optimal substructure can help in reducing redundant computations. I also practiced using techniques like memoization and tabulation to improve both time and space efficiency in algorithms.