You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Pavithra Pishe
Divide and Conquer Algorithms
This technique can be divided into the following three parts: Divide: This involves dividing the problem into smaller sub-problems. Conquer: Solve sub-problems by calling recursively until solved. Combine: Combine the sub-problems to get the final solution of the whole problem.