Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emahtab/dynamic-programming-questions
Some of the most common Dynamic Programming problems
https://github.com/emahtab/dynamic-programming-questions
dynamic-programming
Last synced: about 1 month ago
JSON representation
Some of the most common Dynamic Programming problems
- Host: GitHub
- URL: https://github.com/emahtab/dynamic-programming-questions
- Owner: eMahtab
- Created: 2020-01-15T15:25:37.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-28T17:00:44.000Z (2 months ago)
- Last Synced: 2024-10-28T18:40:44.859Z (2 months ago)
- Topics: dynamic-programming
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dynamic Programming Questions
## Easy
1. [Unique Paths](https://leetcode.com/problems/unique-paths) 👍
2. [Climbing Stairs](https://leetcode.com/problems/climbing-stairs) 👍
3. [House Robber](https://leetcode.com/problems/house-robber) 👍
4. [Maximum Contiguous Subarray Sum](https://leetcode.com/problems/maximum-subarray) 👍## Medium
1. [Unique Paths II](https://leetcode.com/problems/unique-paths-ii) 👍
2. [House Robber II](https://leetcode.com/problems/house-robber-ii) 👍
3. [Coin Change](https://leetcode.com/problems/coin-change) 👍
4. [Coin Change 2](https://leetcode.com/problems/coin-change-2) 👍
5. [Count Square Submatrices with all ones](https://leetcode.com/problems/count-square-submatrices-with-all-ones) 👍
6. [Longest Common Subsequence](https://leetcode.com/problems/longest-common-subsequence) 👍
7. [Longest Increasing Subsequence](https://leetcode.com/problems/longest-increasing-subsequence) 👍
8. [Maximum Sum Increasing Subsequence](https://www.geeksforgeeks.org/problems/maximum-sum-increasing-subsequence4749/1) 👍
9. [Number of Palindromic Substring](https://leetcode.com/problems/palindromic-substrings) 👍
10. [Longest Palindromic substring](https://leetcode.com/problems/longest-palindromic-substring) 👍
11. [Paint House](https://leetcode.com/problems/paint-house) 👍
12. [Ugly Number II](https://leetcode.com/problems/ugly-number-ii) 👍
13. [Edit Distance](https://leetcode.com/problems/edit-distance) 👍## Hard
1. [Best Time to buy and sell Stock IV](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-iv)