DP Print Solutions¶
Table of Contents¶
- 368. Largest Divisible Subset (Medium)
- 1449. Form Largest Integer With Digits That Add up to Target (Hard)
- 1092. Shortest Common Supersequence (Hard)
- 943. Find the Shortest Superstring (Hard)
- 1125. Smallest Sufficient Team (Hard)
- 3260. Find the Largest Palindrome Divisible by K (Hard)
- 3149. Find the Minimum Cost Array Permutation (Hard)
- 3441. Minimum Cost Good Caption (Hard)
- 3348. Smallest Divisible Digit Product II (Hard)
- 656. Coin Path (Hard) 👑
- 471. Encode String with Shortest Length (Hard) 👑
368. Largest Divisible Subset¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, math, dynamic programming, sorting
1449. Form Largest Integer With Digits That Add up to Target¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, dynamic programming
1092. Shortest Common Supersequence¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: string, dynamic programming
943. Find the Shortest Superstring¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, string, dynamic programming, bit manipulation, bitmask
1125. Smallest Sufficient Team¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, dynamic programming, bit manipulation, bitmask
3260. Find the Largest Palindrome Divisible by K¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: math, string, dynamic programming, greedy, number theory
3149. Find the Minimum Cost Array Permutation¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, dynamic programming, bit manipulation, bitmask
3441. Minimum Cost Good Caption¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: string, dynamic programming
3348. Smallest Divisible Digit Product II¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: math, string, backtracking, greedy, number theory
656. Coin Path¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, dynamic programming
471. Encode String with Shortest Length¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: string, dynamic programming