forked from upgrad-edu/Course
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCourse1
More file actions
14 lines (11 loc) · 668 Bytes
/
Course1
File metadata and controls
14 lines (11 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
What are the key concepts you learnt from these courses
You can choose one module from the list below:-
1)Algorithm Analysis
2)Divide and Conquer Algorithms
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.
Dhureen Shettigar
Divide and Conquer Algorithms
I learned how divide and conquer algorithms break complex problems into smaller subproblems, solve them recursively, and then combine the results efficiently. I understood important techniques like recursion, recurrence relations, and time complexity analysis using Master Theorem.