Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)