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
26 lines (16 loc) · 869 Bytes
/
Course1
File metadata and controls
26 lines (16 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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.
Dynamic Programming (DP) is a powerful technique used in computer science to solve optimization
and decision-making problems efficiently by breaking them down into overlapping subproblems and solving
each subproblem only once, storing the results for future use.
Your Name: Tejaswi
Module Name: Python Functions
I learned how to create and use functions in Python.
It helped me understand how to reuse code and organize logic better.
The practical examples made it easier to grasp function arguments and return values.