Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 7ab0a22

Browse files
committed
add 14 solutions
1 parent 156a16b commit 7ab0a22

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+2562
-65
lines changed

‎src/.vuepress/sidebar.ts

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,15 +377,21 @@ export default sidebar({
377377
"0442",
378378
"0443",
379379
"0445",
380+
"0447",
380381
"0448",
382+
"0449",
381383
"0450",
382384
"0451",
383385
"0452",
386+
"0453",
387+
"0454",
384388
"0455",
389+
"0456",
385390
"0458",
386391
"0459",
387392
"0460",
388393
"0461",
394+
"0462",
389395
"0463",
390396
"0474",
391397
"0476",
@@ -622,6 +628,7 @@ export default sidebar({
622628
"1071",
623629
"1072",
624630
"1078",
631+
"1079",
625632
"1081",
626633
"1089"
627634
]
@@ -661,6 +668,7 @@ export default sidebar({
661668
"1233",
662669
"1252",
663670
"1260",
671+
"1261",
664672
"1266",
665673
"1267",
666674
"1268",
@@ -691,6 +699,7 @@ export default sidebar({
691699
"1342",
692700
"1346",
693701
"1351",
702+
"1352",
694703
"1356",
695704
"1360",
696705
"1365",
@@ -716,6 +725,7 @@ export default sidebar({
716725
"1405",
717726
"1408",
718727
"1413",
728+
"1415",
719729
"1417",
720730
"1419",
721731
"1422",
@@ -816,6 +826,7 @@ export default sidebar({
816826
"1704",
817827
"1710",
818828
"1716",
829+
"1718",
819830
"1720",
820831
"1725",
821832
"1726",
@@ -895,6 +906,7 @@ export default sidebar({
895906
"1974",
896907
"1975",
897908
"1979",
909+
"1980",
898910
"1984",
899911
"1991",
900912
"1995"
@@ -1023,6 +1035,7 @@ export default sidebar({
10231035
"2364",
10241036
"2367",
10251037
"2373",
1038+
"2375",
10261039
"2379",
10271040
"2381",
10281041
"2383",
@@ -1114,7 +1127,8 @@ export default sidebar({
11141127
"2693",
11151128
"2694",
11161129
"2695",
1117-
"2696"
1130+
"2696",
1131+
"2698"
11181132
]
11191133
},
11201134
{

‎src/book/backtracking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ var permuteRepeat = function (nums) {
710710
| 90 | 子集 II | [[]](/problem/0090.md) | [`位运算`](/tag/bit-manipulation.md) [`数组`](/tag/array.md) [`回溯`](/tag/backtracking.md) | 🟠 | [🀄️](https://leetcode.cn/problems/subsets-ii) [🔗](https://leetcode.com/problems/subsets-ii) |
711711
| 473 | 火柴拼正方形 | | [`位运算`](/tag/bit-manipulation.md) [`数组`](/tag/array.md) [`动态规划`](/tag/dynamic-programming.md) `2+` | 🟠 | [🀄️](https://leetcode.cn/problems/matchsticks-to-square) [🔗](https://leetcode.com/problems/matchsticks-to-square) |
712712
| 1593 | 拆分字符串使唯一子字符串的数目最大 | [[]](/problem/1593.md) | [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) [`回溯`](/tag/backtracking.md) | 🟠 | [🀄️](https://leetcode.cn/problems/split-a-string-into-the-max-number-of-unique-substrings) [🔗](https://leetcode.com/problems/split-a-string-into-the-max-number-of-unique-substrings) |
713-
| 1079 | 活字印刷 | | [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) [`回溯`](/tag/backtracking.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/letter-tile-possibilities) [🔗](https://leetcode.com/problems/letter-tile-possibilities) |
713+
| 1079 | 活字印刷 | [[]](/problem/1079.md) | [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) [`回溯`](/tag/backtracking.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/letter-tile-possibilities) [🔗](https://leetcode.com/problems/letter-tile-possibilities) |
714714
| 93 | 复原 IP 地址 | [[]](/problem/0093.md) | [`字符串`](/tag/string.md) [`回溯`](/tag/backtracking.md) | 🟠 | [🀄️](https://leetcode.cn/problems/restore-ip-addresses) [🔗](https://leetcode.com/problems/restore-ip-addresses) |
715715
| 79 | 单词搜索 | [[]](/problem/0079.md) | [`数组`](/tag/array.md) [`字符串`](/tag/string.md) [`回溯`](/tag/backtracking.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/word-search) [🔗](https://leetcode.com/problems/word-search) |
716716
| 679 | 24 点游戏 | | [`数组`](/tag/array.md) [`数学`](/tag/math.md) [`回溯`](/tag/backtracking.md) | 🔴 | [🀄️](https://leetcode.cn/problems/24-game) [🔗](https://leetcode.com/problems/24-game) |

‎src/book/hash.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ jsonToMap('[[true,7],[{"foo":3},["abc"]]]');
667667
| 1 | 两数之和 | [[]](/problem/0001.md) | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) | 🟢 | [🀄️](https://leetcode.cn/problems/two-sum) [🔗](https://leetcode.com/problems/two-sum) |
668668
| 15 | 三数之和 | [[]](/problem/0015.md) | [`数组`](/tag/array.md) [`双指针`](/tag/two-pointers.md) [`排序`](/tag/sorting.md) | 🟠 | [🀄️](https://leetcode.cn/problems/3sum) [🔗](https://leetcode.com/problems/3sum) |
669669
| 18 | 四数之和 | [[]](/problem/0018.md) | [`数组`](/tag/array.md) [`双指针`](/tag/two-pointers.md) [`排序`](/tag/sorting.md) | 🟠 | [🀄️](https://leetcode.cn/problems/4sum) [🔗](https://leetcode.com/problems/4sum) |
670-
| 454 | 四数相加 II | | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) | 🟠 | [🀄️](https://leetcode.cn/problems/4sum-ii) [🔗](https://leetcode.com/problems/4sum-ii) |
670+
| 454 | 四数相加 II | [[]](/problem/0454.md) | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) | 🟠 | [🀄️](https://leetcode.cn/problems/4sum-ii) [🔗](https://leetcode.com/problems/4sum-ii) |
671671
| 41 | 缺失的第一个正数 | [[]](/problem/0041.md) | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) | 🔴 | [🀄️](https://leetcode.cn/problems/first-missing-positive) [🔗](https://leetcode.com/problems/first-missing-positive) |
672672
| 128 | 最长连续序列 | [[]](/problem/0128.md) | [`并查集`](/tag/union-find.md) [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) | 🟠 | [🀄️](https://leetcode.cn/problems/longest-consecutive-sequence) [🔗](https://leetcode.com/problems/longest-consecutive-sequence) |
673673
| 202 | 快乐数 | [[]](/problem/0202.md) | [`哈希表`](/tag/hash-table.md) [`数学`](/tag/math.md) [`双指针`](/tag/two-pointers.md) | 🟢 | [🀄️](https://leetcode.cn/problems/happy-number) [🔗](https://leetcode.com/problems/happy-number) |
@@ -681,7 +681,7 @@ jsonToMap('[[true,7],[{"foo":3},["abc"]]]');
681681
| 49 | 字母异位词分组 | [[]](/problem/0049.md) | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/group-anagrams) [🔗](https://leetcode.com/problems/group-anagrams) |
682682
| 599 | 两个列表的最小索引总和 | [[]](/problem/0599.md) | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) | 🟢 | [🀄️](https://leetcode.cn/problems/minimum-index-sum-of-two-lists) [🔗](https://leetcode.com/problems/minimum-index-sum-of-two-lists) |
683683
| 387 | 字符串中的第一个唯一字符 | [[]](/problem/0387.md) | [`队列`](/tag/queue.md) [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) `1+` | 🟢 | [🀄️](https://leetcode.cn/problems/first-unique-character-in-a-string) [🔗](https://leetcode.com/problems/first-unique-character-in-a-string) |
684-
| 447 | 回旋镖的数量 | | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) [`数学`](/tag/math.md) | 🟠 | [🀄️](https://leetcode.cn/problems/number-of-boomerangs) [🔗](https://leetcode.com/problems/number-of-boomerangs) |
684+
| 447 | 回旋镖的数量 | [[]](/problem/0447.md) | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) [`数学`](/tag/math.md) | 🟠 | [🀄️](https://leetcode.cn/problems/number-of-boomerangs) [🔗](https://leetcode.com/problems/number-of-boomerangs) |
685685
| 149 | 直线上最多的点数 | [[]](/problem/0149.md) | [`几何`](/tag/geometry.md) [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) `1+` | 🔴 | [🀄️](https://leetcode.cn/problems/max-points-on-a-line) [🔗](https://leetcode.com/problems/max-points-on-a-line) |
686686
| 359 | 日志速率限制器 🔒 | | [`设计`](/tag/design.md) [`哈希表`](/tag/hash-table.md) [`数据流`](/tag/data-stream.md) | 🟢 | [🀄️](https://leetcode.cn/problems/logger-rate-limiter) [🔗](https://leetcode.com/problems/logger-rate-limiter) |
687687
| 811 | 子域名访问计数 | | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/subdomain-visit-count) [🔗](https://leetcode.com/problems/subdomain-visit-count) |

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /