@@ -147,18 +147,18 @@ time complexity?
147
147
| 15 | 三数之和 | [[ ✓]] ( /problem/0015.md ) | [ ` 数组 ` ] ( /tag/array.md ) [ ` 双指针 ` ] ( /tag/two-pointers.md ) [ ` 排序 ` ] ( /tag/sorting.md ) | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/3sum ) [ 🔗] ( https://leetcode.com/problems/3sum ) |
148
148
| 18 | 四数之和 | [[ ✓]] ( /problem/0018.md ) | [ ` 数组 ` ] ( /tag/array.md ) [ ` 双指针 ` ] ( /tag/two-pointers.md ) [ ` 排序 ` ] ( /tag/sorting.md ) | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/4sum ) [ 🔗] ( https://leetcode.com/problems/4sum ) |
149
149
| 167 | 两数之和 II - 输入有序数组 | [[ ✓]] ( /problem/0167.md ) | [ ` 数组 ` ] ( /tag/array.md ) [ ` 双指针 ` ] ( /tag/two-pointers.md ) [ ` 二分查找 ` ] ( /tag/binary-search.md ) | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/two-sum-ii-input-array-is-sorted ) [ 🔗] ( https://leetcode.com/problems/two-sum-ii-input-array-is-sorted ) |
150
- | 170 | 两数之和 III - 数据结构设计 🔒 | | [ ` 设计 ` ] ( /tag/design.md ) [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) ` 2+ ` | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/two-sum-iii-data-structure-design ) [ 🔗] ( https://leetcode.com/problems/two-sum-iii-data-structure-design ) |
150
+ | 170 | 两数之和 III - 数据结构设计 🔒 | [[ ✓ ]] ( /problem/0170.md ) | [ ` 设计 ` ] ( /tag/design.md ) [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) ` 2+ ` | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/two-sum-iii-data-structure-design ) [ 🔗] ( https://leetcode.com/problems/two-sum-iii-data-structure-design ) |
151
151
| 560 | 和为 K 的子数组 | [[ ✓]] ( /problem/0560.md ) | [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 前缀和 ` ] ( /tag/prefix-sum.md ) | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/subarray-sum-equals-k ) [ 🔗] ( https://leetcode.com/problems/subarray-sum-equals-k ) |
152
- | 653 | 两数之和 IV - 输入二叉搜索树 | | [ ` 树 ` ] ( /tag/tree.md ) [ ` 深度优先搜索 ` ] ( /tag/depth-first-search.md ) [ ` 广度优先搜索 ` ] ( /tag/breadth-first-search.md ) ` 4+ ` | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/two-sum-iv-input-is-a-bst ) [ 🔗] ( https://leetcode.com/problems/two-sum-iv-input-is-a-bst ) |
152
+ | 653 | 两数之和 IV - 输入二叉搜索树 | [[ ✓ ]] ( /problem/0653.md ) | [ ` 树 ` ] ( /tag/tree.md ) [ ` 深度优先搜索 ` ] ( /tag/depth-first-search.md ) [ ` 广度优先搜索 ` ] ( /tag/breadth-first-search.md ) ` 4+ ` | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/two-sum-iv-input-is-a-bst ) [ 🔗] ( https://leetcode.com/problems/two-sum-iv-input-is-a-bst ) |
153
153
| 1099 | 小于 K 的两数之和 🔒 | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 双指针 ` ] ( /tag/two-pointers.md ) [ ` 二分查找 ` ] ( /tag/binary-search.md ) ` 1+ ` | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/two-sum-less-than-k ) [ 🔗] ( https://leetcode.com/problems/two-sum-less-than-k ) |
154
154
| 1679 | K 和数对的最大数目 | [[ ✓]] ( /problem/1679.md ) | [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 双指针 ` ] ( /tag/two-pointers.md ) ` 1+ ` | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/max-number-of-k-sum-pairs ) [ 🔗] ( https://leetcode.com/problems/max-number-of-k-sum-pairs ) |
155
155
| 1711 | 大餐计数 | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/count-good-meals ) [ 🔗] ( https://leetcode.com/problems/count-good-meals ) |
156
- | 2006 | 差的绝对值为 K 的数对数目 | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 计数 ` ] ( /tag/counting.md ) | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/count-number-of-pairs-with-absolute-difference-k ) [ 🔗] ( https://leetcode.com/problems/count-number-of-pairs-with-absolute-difference-k ) |
156
+ | 2006 | 差的绝对值为 K 的数对数目 | [[ ✓ ]] ( /problem/2006.md ) | [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 计数 ` ] ( /tag/counting.md ) | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/count-number-of-pairs-with-absolute-difference-k ) [ 🔗] ( https://leetcode.com/problems/count-number-of-pairs-with-absolute-difference-k ) |
157
157
| 2023 | 连接后等于目标字符串的字符串对 | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 字符串 ` ] ( /tag/string.md ) ` 1+ ` | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/number-of-pairs-of-strings-with-concatenation-equal-to-target ) [ 🔗] ( https://leetcode.com/problems/number-of-pairs-of-strings-with-concatenation-equal-to-target ) |
158
- | 2200 | 找出数组中的所有 K 近邻下标 | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 双指针 ` ] ( /tag/two-pointers.md ) | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/find-all-k-distant-indices-in-an-array ) [ 🔗] ( https://leetcode.com/problems/find-all-k-distant-indices-in-an-array ) |
159
- | 2351 | 第一个出现两次的字母 | | [ ` 位运算 ` ] ( /tag/bit-manipulation.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 字符串 ` ] ( /tag/string.md ) ` 1+ ` | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/first-letter-to-appear-twice ) [ 🔗] ( https://leetcode.com/problems/first-letter-to-appear-twice ) |
158
+ | 2200 | 找出数组中的所有 K 近邻下标 | [[ ✓ ]] ( /problem/2200.md ) | [ ` 数组 ` ] ( /tag/array.md ) [ ` 双指针 ` ] ( /tag/two-pointers.md ) | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/find-all-k-distant-indices-in-an-array ) [ 🔗] ( https://leetcode.com/problems/find-all-k-distant-indices-in-an-array ) |
159
+ | 2351 | 第一个出现两次的字母 | [[ ✓ ]] ( /problem/2351.md ) | [ ` 位运算 ` ] ( /tag/bit-manipulation.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 字符串 ` ] ( /tag/string.md ) ` 1+ ` | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/first-letter-to-appear-twice ) [ 🔗] ( https://leetcode.com/problems/first-letter-to-appear-twice ) |
160
160
| 2354 | 优质数对的数目 | | [ ` 位运算 ` ] ( /tag/bit-manipulation.md ) [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) ` 1+ ` | 🔴 | [ 🀄️] ( https://leetcode.cn/problems/number-of-excellent-pairs ) [ 🔗] ( https://leetcode.com/problems/number-of-excellent-pairs ) |
161
- | 2367 | 等差三元组的数目 | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 双指针 ` ] ( /tag/two-pointers.md ) ` 1+ ` | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/number-of-arithmetic-triplets ) [ 🔗] ( https://leetcode.com/problems/number-of-arithmetic-triplets ) |
161
+ | 2367 | 等差三元组的数目 | [[ ✓ ]] ( /problem/2367.md ) | [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 双指针 ` ] ( /tag/two-pointers.md ) ` 1+ ` | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/number-of-arithmetic-triplets ) [ 🔗] ( https://leetcode.com/problems/number-of-arithmetic-triplets ) |
162
162
| 2374 | 边积分最高的节点 | | [ ` 图 ` ] ( /tag/graph.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/node-with-highest-edge-score ) [ 🔗] ( https://leetcode.com/problems/node-with-highest-edge-score ) |
163
163
| 2395 | 和相等的子数组 | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/find-subarrays-with-equal-sum ) [ 🔗] ( https://leetcode.com/problems/find-subarrays-with-equal-sum ) |
164
164
| 2399 | 检查相同字母间的距离 | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 字符串 ` ] ( /tag/string.md ) | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/check-distances-between-same-letters ) [ 🔗] ( https://leetcode.com/problems/check-distances-between-same-letters ) |
0 commit comments