|
185 | 185 | | [0172](https://leetcode-cn.com/problems/factorial-trailing-zeroes) | [阶乘后的零](/solution/0100-0199/0172.Factorial%20Trailing%20Zeroes/README.md) | `数学` | 简单 | |
|
186 | 186 | | [0173](https://leetcode-cn.com/problems/binary-search-tree-iterator) | [二叉搜索树迭代器](/solution/0100-0199/0173.Binary%20Search%20Tree%20Iterator/README.md) | `栈`,`树`,`设计`,`二叉搜索树`,`二叉树`,`迭代器` | 中等 | |
|
187 | 187 | | [0174](https://leetcode-cn.com/problems/dungeon-game) | [地下城游戏](/solution/0100-0199/0174.Dungeon%20Game/README.md) | `数组`,`动态规划`,`矩阵` | 困难 | |
|
| 188 | +| [0175](https://leetcode-cn.com/problems/combine-two-tables) | [组合两个表](/solution/0100-0199/0175.Combine%20Two%20Tables/README.md) | `数据库` | 简单 | | |
188 | 189 | | [0176](https://leetcode-cn.com/problems/second-highest-salary) | [第二高的薪水](/solution/0100-0199/0176.Second%20Highest%20Salary/README.md) | `数据库` | 简单 | |
|
189 | 190 | | [0177](https://leetcode-cn.com/problems/nth-highest-salary) | [第N高的薪水](/solution/0100-0199/0177.Nth%20Highest%20Salary/README.md) | `数据库` | 中等 | |
|
190 | 191 | | [0178](https://leetcode-cn.com/problems/rank-scores) | [分数排名](/solution/0100-0199/0178.Rank%20Scores/README.md) | `数据库` | 中等 | |
|
|
242 | 243 | | [0230](https://leetcode-cn.com/problems/kth-smallest-element-in-a-bst) | [二叉搜索树中第K小的元素](/solution/0200-0299/0230.Kth%20Smallest%20Element%20in%20a%20BST/README.md) | `树`,`深度优先搜索`,`二叉搜索树`,`二叉树` | 中等 | |
|
243 | 244 | | [0231](https://leetcode-cn.com/problems/power-of-two) | [2 的幂](/solution/0200-0299/0231.Power%20of%20Two/README.md) | `位运算`,`递归`,`数学` | 简单 | |
|
244 | 245 | | [0232](https://leetcode-cn.com/problems/implement-queue-using-stacks) | [用栈实现队列](/solution/0200-0299/0232.Implement%20Queue%20using%20Stacks/README.md) | `栈`,`设计`,`队列` | 简单 | |
|
| 246 | +| [0233](https://leetcode-cn.com/problems/number-of-digit-one) | [数字 1 的个数](/solution/0200-0299/0233.Number%20of%20Digit%20One/README.md) | `递归`,`数学`,`动态规划` | 困难 | | |
245 | 247 | | [0234](https://leetcode-cn.com/problems/palindrome-linked-list) | [回文链表](/solution/0200-0299/0234.Palindrome%20Linked%20List/README.md) | `栈`,`递归`,`链表`,`双指针` | 简单 | |
|
246 | 248 | | [0235](https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-search-tree) | [二叉搜索树的最近公共祖先](/solution/0200-0299/0235.Lowest%20Common%20Ancestor%20of%20a%20Binary%20Search%20Tree/README.md) | `树`,`深度优先搜索`,`二叉搜索树`,`二叉树` | 简单 | |
|
247 | 249 | | [0236](https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-tree) | [二叉树的最近公共祖先](/solution/0200-0299/0236.Lowest%20Common%20Ancestor%20of%20a%20Binary%20Tree/README.md) | `树`,`深度优先搜索`,`二叉树` | 中等 | |
|
|
599 | 601 | | [0588](https://leetcode-cn.com/problems/design-in-memory-file-system) | [设计内存文件系统](/solution/0500-0599/0588.Design%20In-Memory%20File%20System/README.md) | `设计`,`字典树`,`哈希表`,`字符串` | 困难 | 🔒 |
|
600 | 602 | | [0589](https://leetcode-cn.com/problems/n-ary-tree-preorder-traversal) | [N 叉树的前序遍历](/solution/0500-0599/0589.N-ary%20Tree%20Preorder%20Traversal/README.md) | `栈`,`树`,`深度优先搜索` | 简单 | |
|
601 | 603 | | [0590](https://leetcode-cn.com/problems/n-ary-tree-postorder-traversal) | [N 叉树的后序遍历](/solution/0500-0599/0590.N-ary%20Tree%20Postorder%20Traversal/README.md) | `栈`,`树`,`深度优先搜索` | 简单 | |
|
| 604 | +| [0591](https://leetcode-cn.com/problems/tag-validator) | [标签验证器](/solution/0500-0599/0591.Tag%20Validator/README.md) | `栈`,`字符串` | 困难 | | |
602 | 605 | | [0592](https://leetcode-cn.com/problems/fraction-addition-and-subtraction) | [分数加减运算](/solution/0500-0599/0592.Fraction%20Addition%20and%20Subtraction/README.md) | `数学`,`字符串`,`模拟` | 中等 | |
|
603 | 606 | | [0593](https://leetcode-cn.com/problems/valid-square) | [有效的正方形](/solution/0500-0599/0593.Valid%20Square/README.md) | `几何`,`数学` | 中等 | |
|
604 | 607 | | [0594](https://leetcode-cn.com/problems/longest-harmonious-subsequence) | [最长和谐子序列](/solution/0500-0599/0594.Longest%20Harmonious%20Subsequence/README.md) | `数组`,`哈希表`,`排序` | 简单 | |
|
|
898 | 901 | | [0888](https://leetcode-cn.com/problems/fair-candy-swap) | [公平的糖果棒交换](/solution/0800-0899/0888.Fair%20Candy%20Swap/README.md) | `数组`,`哈希表`,`二分查找`,`排序` | 简单 | |
|
899 | 902 | | [0889](https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-postorder-traversal) | [根据前序和后序遍历构造二叉树](/solution/0800-0899/0889.Construct%20Binary%20Tree%20from%20Preorder%20and%20Postorder%20Traversal/README.md) | `树`,`数组`,`哈希表`,`分治`,`二叉树` | 中等 | |
|
900 | 903 | | [0890](https://leetcode-cn.com/problems/find-and-replace-pattern) | [查找和替换模式](/solution/0800-0899/0890.Find%20and%20Replace%20Pattern/README.md) | `数组`,`哈希表`,`字符串` | 中等 | |
|
| 904 | +| [0891](https://leetcode-cn.com/problems/sum-of-subsequence-widths) | [子序列宽度之和](/solution/0800-0899/0891.Sum%20of%20Subsequence%20Widths/README.md) | `数组`,`数学`,`排序` | 困难 | | |
901 | 905 | | [0892](https://leetcode-cn.com/problems/surface-area-of-3d-shapes) | [三维形体的表面积](/solution/0800-0899/0892.Surface%20Area%20of%203D%20Shapes/README.md) | `几何`,`数组`,`数学`,`矩阵` | 简单 | |
|
902 | 906 | | [0893](https://leetcode-cn.com/problems/groups-of-special-equivalent-strings) | [特殊等价字符串组](/solution/0800-0899/0893.Groups%20of%20Special-Equivalent%20Strings/README.md) | `数组`,`哈希表`,`字符串` | 简单 | |
|
903 | 907 | | [0894](https://leetcode-cn.com/problems/all-possible-full-binary-trees) | [所有可能的满二叉树](/solution/0800-0899/0894.All%20Possible%20Full%20Binary%20Trees/README.md) | `树`,`递归`,`记忆化搜索`,`动态规划`,`二叉树` | 中等 | |
|
|
1062 | 1066 | | [1053](https://leetcode-cn.com/problems/previous-permutation-with-one-swap) | [交换一次的先前排列](/solution/1000-1099/1053.Previous%20Permutation%20With%20One%20Swap/README.md) | `贪心`,`数组` | 中等 | |
|
1063 | 1067 | | [1054](https://leetcode-cn.com/problems/distant-barcodes) | [距离相等的条形码](/solution/1000-1099/1054.Distant%20Barcodes/README.md) | `贪心`,`数组`,`哈希表`,`计数`,`排序`,`堆(优先队列)` | 中等 | |
|
1064 | 1068 | | [1055](https://leetcode-cn.com/problems/shortest-way-to-form-string) | [形成字符串的最短路径](/solution/1000-1099/1055.Shortest%20Way%20to%20Form%20String/README.md) | `贪心`,`字符串`,`动态规划` | 中等 | 🔒 |
|
1065 |
| -| [1056](https://leetcode-cn.com/problems/confusing-number) | [易混淆数](/solution/1000-1099/1056.Confusing%20Number/README.md) | `数学` | 简单 | 🔒 | |
1066 | 1069 | | [1057](https://leetcode-cn.com/problems/campus-bikes) | [校园自行车分配](/solution/1000-1099/1057.Campus%20Bikes/README.md) | `贪心`,`数组`,`排序` | 中等 | 🔒 |
|
1067 | 1070 | | [1058](https://leetcode-cn.com/problems/minimize-rounding-error-to-meet-target) | [最小化舍入误差以满足目标](/solution/1000-1099/1058.Minimize%20Rounding%20Error%20to%20Meet%20Target/README.md) | `贪心`,`数组`,`数学`,`字符串` | 中等 | 🔒 |
|
1068 | 1071 | | [1059](https://leetcode-cn.com/problems/all-paths-from-source-lead-to-destination) | [从始点到终点的所有路径](/solution/1000-1099/1059.All%20Paths%20from%20Source%20Lead%20to%20Destination/README.md) | `深度优先搜索`,`图` | 中等 | 🔒 |
|
|
1282 | 1285 | | [1273](https://leetcode-cn.com/problems/delete-tree-nodes) | [删除树节点](/solution/1200-1299/1273.Delete%20Tree%20Nodes/README.md) | `树`,`深度优先搜索`,`广度优先搜索` | 中等 | 🔒 |
|
1283 | 1286 | | [1274](https://leetcode-cn.com/problems/number-of-ships-in-a-rectangle) | [矩形内船只的数目](/solution/1200-1299/1274.Number%20of%20Ships%20in%20a%20Rectangle/README.md) | `数组`,`分治`,`交互` | 困难 | 🔒 |
|
1284 | 1287 | | [1275](https://leetcode-cn.com/problems/find-winner-on-a-tic-tac-toe-game) | [找出井字棋的获胜者](/solution/1200-1299/1275.Find%20Winner%20on%20a%20Tic%20Tac%20Toe%20Game/README.md) | `数组`,`哈希表`,`矩阵`,`模拟` | 简单 | |
|
| 1288 | +| [1276](https://leetcode-cn.com/problems/number-of-burgers-with-no-waste-of-ingredients) | [不浪费原料的汉堡制作方案](/solution/1200-1299/1276.Number%20of%20Burgers%20with%20No%20Waste%20of%20Ingredients/README.md) | `数学` | 中等 | | |
1285 | 1289 | | [1277](https://leetcode-cn.com/problems/count-square-submatrices-with-all-ones) | [统计全为 1 的正方形子矩阵](/solution/1200-1299/1277.Count%20Square%20Submatrices%20with%20All%20Ones/README.md) | `数组`,`动态规划`,`矩阵` | 中等 | |
|
1286 | 1290 | | [1278](https://leetcode-cn.com/problems/palindrome-partitioning-iii) | [分割回文串 III](/solution/1200-1299/1278.Palindrome%20Partitioning%20III/README.md) | `字符串`,`动态规划` | 困难 | |
|
1287 | 1291 | | [1279](https://leetcode-cn.com/problems/traffic-light-controlled-intersection) | [红绿灯路口](/solution/1200-1299/1279.Traffic%20Light%20Controlled%20Intersection/README.md) | `多线程` | 简单 | 🔒 |
|
|
1691 | 1695 | | [1683](https://leetcode-cn.com/problems/invalid-tweets) | [无效的推文](/solution/1600-1699/1683.Invalid%20Tweets/README.md) | `数据库` | 简单 | 🔒 |
|
1692 | 1696 | | [1684](https://leetcode-cn.com/problems/count-the-number-of-consistent-strings) | [统计一致字符串的数目](/solution/1600-1699/1684.Count%20the%20Number%20of%20Consistent%20Strings/README.md) | `位运算`,`数组`,`哈希表`,`字符串` | 简单 | |
|
1693 | 1697 | | [1685](https://leetcode-cn.com/problems/sum-of-absolute-differences-in-a-sorted-array) | [有序数组中差绝对值之和](/solution/1600-1699/1685.Sum%20of%20Absolute%20Differences%20in%20a%20Sorted%20Array/README.md) | `数组`,`数学`,`前缀和` | 中等 | |
|
| 1698 | +| [1686](https://leetcode-cn.com/problems/stone-game-vi) | [石子游戏 VI](/solution/1600-1699/1686.Stone%20Game%20VI/README.md) | `贪心`,`数组`,`数学`,`博弈`,`排序`,`堆(优先队列)` | 中等 | | |
1694 | 1699 | | [1687](https://leetcode-cn.com/problems/delivering-boxes-from-storage-to-ports) | [从仓库到码头运输箱子](/solution/1600-1699/1687.Delivering%20Boxes%20from%20Storage%20to%20Ports/README.md) | `线段树`,`队列`,`数组`,`动态规划`,`单调队列`,`堆(优先队列)` | 困难 | |
|
1695 | 1700 | | [1688](https://leetcode-cn.com/problems/count-of-matches-in-tournament) | [比赛中的配对次数](/solution/1600-1699/1688.Count%20of%20Matches%20in%20Tournament/README.md) | `数学`,`模拟` | 简单 | |
|
1696 | 1701 | | [1689](https://leetcode-cn.com/problems/partitioning-into-minimum-number-of-deci-binary-numbers) | [十-二进制数的最少数目](/solution/1600-1699/1689.Partitioning%20Into%20Minimum%20Number%20Of%20Deci-Binary%20Numbers/README.md) | `贪心`,`字符串` | 中等 | |
|
|
0 commit comments