DP Digit¶
Table of Contents¶
- 2719. Count of Integers (Hard)
- 1742. Maximum Number of Balls in a Box (Easy)
- 2843. Count Symmetric Integers (Easy)
- 788. Rotated Digits (Medium)
- 902. Numbers At Most N Given Digit Set (Hard)
- 600. Non-negative Integers without Consecutive Ones (Hard)
- 2376. Count Special Integers (Hard)
- 1012. Numbers With Repeated Digits (Hard)
- 357. Count Numbers with Unique Digits (Medium)
- 2827. Number of Beautiful Integers in the Range (Hard)
- 2999. Count the Number of Powerful Integers (Hard)
- 2801. Count Stepping Numbers in Range (Hard)
- 3352. Count K-Reducible Numbers Less Than N (Hard)
- 1397. Find All Good Strings (Hard)
- 3348. Smallest Divisible Digit Product II (Hard)
- 1215. Stepping Numbers (Medium) 👑
- 1067. Digit Count in Range (Hard) 👑
- 3032. Count Numbers With Unique Digits II (Easy) 👑
- 233. Number of Digit One (Hard)
- 3007. Maximum Number That Sum of the Prices Is Less Than or Equal to K (Medium)
2719. Count of Integers¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: math, string, dynamic programming
1742. Maximum Number of Balls in a Box¶
-
LeetCode | LeetCode CH (Easy)
-
Tags: hash table, math, counting
2843. Count Symmetric Integers¶
-
LeetCode | LeetCode CH (Easy)
-
Tags: math, enumeration
788. Rotated Digits¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: math, dynamic programming
902. Numbers At Most N Given Digit Set¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, math, string, binary search, dynamic programming
600. Non-negative Integers without Consecutive Ones¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: dynamic programming
2376. Count Special Integers¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: math, dynamic programming
1012. Numbers With Repeated Digits¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: math, dynamic programming
357. Count Numbers with Unique Digits¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: math, dynamic programming, backtracking
2827. Number of Beautiful Integers in the Range¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: math, dynamic programming
2999. Count the Number of Powerful Integers¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: math, string, dynamic programming
2801. Count Stepping Numbers in Range¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: string, dynamic programming
3352. Count K-Reducible Numbers Less Than N¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: math, string, dynamic programming, combinatorics
1397. Find All Good Strings¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: string, dynamic programming, string matching
3348. Smallest Divisible Digit Product II¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: math, string, backtracking, greedy, number theory
1215. Stepping Numbers¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: math, backtracking, breadth first search
1067. Digit Count in Range¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: math, dynamic programming
3032. Count Numbers With Unique Digits II¶
-
LeetCode | LeetCode CH (Easy)
-
Tags: hash table, math, dynamic programming
233. Number of Digit One¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: math, dynamic programming, recursion
3007. Maximum Number That Sum of the Prices Is Less Than or Equal to K¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: binary search, dynamic programming, bit manipulation