File tree 4 files changed +4
-4
lines changed
06.String/02.String-Single-Pattern-Matching
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 28
28
| 0025 | [ K 个一组翻转链表] ( https://leetcode.cn/problems/reverse-nodes-in-k-group/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0025.%20K%20%E4%B8%AA%E4%B8%80%E7%BB%84%E7%BF%BB%E8%BD%AC%E9%93%BE%E8%A1%A8.md ) | 递归、链表 | 困难 |
29
29
| 0026 | [ 删除有序数组中的重复项] ( https://leetcode.cn/problems/remove-duplicates-from-sorted-array/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0026.%20%E5%88%A0%E9%99%A4%E6%9C%89%E5%BA%8F%E6%95%B0%E7%BB%84%E4%B8%AD%E7%9A%84%E9%87%8D%E5%A4%8D%E9%A1%B9.md ) | 数组、双指针 | 简单 |
30
30
| 0027 | [ 移除元素] ( https://leetcode.cn/problems/remove-element/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0027.%20%E7%A7%BB%E9%99%A4%E5%85%83%E7%B4%A0.md ) | 数组、双指针 | 简单 |
31
- | 0028 | [ 实现 strStr() ] ( https://leetcode.cn/problems/implement-strstr / ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0028.%20%E5%AE%9E% E7%8E%B0%20strStr%28%29 .md ) | 字符串、双指针 | 简单 |
31
+ | 0028 | [ 找出字符串中第一个匹配项的下标 ] ( https://leetcode.cn/problems/find-the-index-of-the-first-occurrence-in-a-string / ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0028.%20%E6%89%BE% E5%87%BA%E5%AD%97% E7%AC%A6%E4%B8%B2%E4%B8%AD%E7%AC%AC%E4%B8%80%E4%B8%AA%E5%8C%B9%E9%85%8D%E9%A1%B9%E7%9A%84%E4%B8%8B%E6%A0%87 .md ) | 字符串、双指针 | 简单 |
32
32
| 0029 | [ 两数相除] ( https://leetcode.cn/problems/divide-two-integers/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0029.%20%E4%B8%A4%E6%95%B0%E7%9B%B8%E9%99%A4.md ) | 数学、二分查找 | 中等 |
33
33
| 0033 | [ 搜索旋转排序数组] ( https://leetcode.cn/problems/search-in-rotated-sorted-array/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0033.%20%E6%90%9C%E7%B4%A2%E6%97%8B%E8%BD%AC%E6%8E%92%E5%BA%8F%E6%95%B0%E7%BB%84.md ) | 数组、二分查找 | 中等 |
34
34
| 0034 | [ 在排序数组中查找元素的第一个和最后一个位置] ( https://leetcode.cn/problems/find-first-and-last-position-of-element-in-sorted-array/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0034.%20%E5%9C%A8%E6%8E%92%E5%BA%8F%E6%95%B0%E7%BB%84%E4%B8%AD%E6%9F%A5%E6%89%BE%E5%85%83%E7%B4%A0%E7%9A%84%E7%AC%AC%E4%B8%80%E4%B8%AA%E5%92%8C%E6%9C%80%E5%90%8E%E4%B8%80%E4%B8%AA%E4%BD%8D%E7%BD%AE.md ) | 数组、二分查找 | 中等 |
Original file line number Diff line number Diff line change 426
426
427
427
| 题号 | 标题 | 题解 | 标签 | 难度 |
428
428
| :------ | :------ | :------ | :------ | :------ |
429
- | 0028 | [ 实现 strStr() ] ( https://leetcode.cn/problems/implement-strstr / ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0028.%20%E5%AE%9E% E7%8E%B0%20strStr%28%29 .md ) | 字符串、双指针 | 简单 |
429
+ | 0028 | [ 找出字符串中第一个匹配项的下标 ] ( https://leetcode.cn/problems/find-the-index-of-the-first-occurrence-in-a-string / ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0028.%20%E6%89%BE% E5%87%BA%E5%AD%97% E7%AC%A6%E4%B8%B2%E4%B8%AD%E7%AC%AC%E4%B8%80%E4%B8%AA%E5%8C%B9%E9%85%8D%E9%A1%B9%E7%9A%84%E4%B8%8B%E6%A0%87 .md ) | 字符串、双指针 | 简单 |
430
430
| 0459 | [ 重复的子字符串] ( https://leetcode.cn/problems/repeated-substring-pattern/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0459.%20%E9%87%8D%E5%A4%8D%E7%9A%84%E5%AD%90%E5%AD%97%E7%AC%A6%E4%B8%B2.md ) | 字符串、字符串匹配 | 简单 |
431
431
| 0686 | [ 重复叠加字符串匹配] ( https://leetcode.cn/problems/repeated-string-match/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0686.%20%E9%87%8D%E5%A4%8D%E5%8F%A0%E5%8A%A0%E5%AD%97%E7%AC%A6%E4%B8%B2%E5%8C%B9%E9%85%8D.md ) | 字符串、字符串匹配 | 中等 |
432
432
| 0796 | [ 旋转字符串] ( https://leetcode.cn/problems/rotate-string/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0796.%20%E6%97%8B%E8%BD%AC%E5%AD%97%E7%AC%A6%E4%B8%B2.md ) | 字符串、字符串匹配 | 简单 |
Original file line number Diff line number Diff line change 2
2
3
3
| 题号 | 标题 | 题解 | 标签 | 难度 |
4
4
| :------ | :------ | :------ | :------ | :------ |
5
- | 0028 | [ 实现 strStr() ] ( https://leetcode.cn/problems/implement-strstr / ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0028.%20%E5%AE%9E% E7%8E%B0%20strStr%28%29 .md ) | 字符串、双指针 | 简单 |
5
+ | 0028 | [ 找出字符串中第一个匹配项的下标 ] ( https://leetcode.cn/problems/find-the-index-of-the-first-occurrence-in-a-string / ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0028.%20%E6%89%BE% E5%87%BA%E5%AD%97% E7%AC%A6%E4%B8%B2%E4%B8%AD%E7%AC%AC%E4%B8%80%E4%B8%AA%E5%8C%B9%E9%85%8D%E9%A1%B9%E7%9A%84%E4%B8%8B%E6%A0%87 .md ) | 字符串、双指针 | 简单 |
6
6
| 0459 | [ 重复的子字符串] ( https://leetcode.cn/problems/repeated-substring-pattern/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0459.%20%E9%87%8D%E5%A4%8D%E7%9A%84%E5%AD%90%E5%AD%97%E7%AC%A6%E4%B8%B2.md ) | 字符串、字符串匹配 | 简单 |
7
7
| 0686 | [ 重复叠加字符串匹配] ( https://leetcode.cn/problems/repeated-string-match/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0686.%20%E9%87%8D%E5%A4%8D%E5%8F%A0%E5%8A%A0%E5%AD%97%E7%AC%A6%E4%B8%B2%E5%8C%B9%E9%85%8D.md ) | 字符串、字符串匹配 | 中等 |
8
8
| 0796 | [ 旋转字符串] ( https://leetcode.cn/problems/rotate-string/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0796.%20%E6%97%8B%E8%BD%AC%E5%AD%97%E7%AC%A6%E4%B8%B2.md ) | 字符串、字符串匹配 | 简单 |
Original file line number Diff line number Diff line change 1
- # [ 0028. 实现 strStr() ] ( https://leetcode.cn/problems/implement-strstr / )
1
+ # [ 0028. 找出字符串中第一个匹配项的下标 ] ( https://leetcode.cn/problems/find-the-index-of-the-first-occurrence-in-a-string / )
2
2
3
3
- 标签:字符串、双指针
4
4
- 难度:简单
You can’t perform that action at this time.
0 commit comments