Joined: Nov 2013
Posts: 557
Likes Received: 0
I want to know what is Dynamic programming?
Joined: Feb 2016
Posts: 4
Likes Received: 0
Search in wiki and read programming books. Any post is not enough to understand you. Just you have to search and research then you'll be able to learn more.
Joined: Jul 2016
Posts: 69
Likes Received: 0
Dynamic programming is a method of solving a complex problem by breaking it down into a collection of simpler sub problems, solving each of those sub problems just once and storing their solutions.
Joined: Feb 2017
Posts: 2
Likes Received: 0
A DP is an algorithmic method which is generally based on a repeated formula and one starting states. A sub-solution of the issue is designed from previously found ones. DP solutions have a polynomial difficulty which assures a much faster going time than other techniques like backtracking, brute-force etc.
Joined: Mar 2018
Posts: 142
Likes Received: 0
Dynamic programming is both a mathematical optimization method and a computer programming method. It is a method of solving a complex problem by breaking it down into a collection of simpler subproblems and storing their solutions.
Joined: Dec 2020
Posts: 69
Likes Received: 2
Websites to learn Programming
Python - Programiz, Cousera, CodeAcademy
JavaScript - Free Code Camp, Java point, W3School
C/ C++ - Udemy, Khanacademy, Sololearn