@@ -9,13 +9,13 @@ LeetCode 最强题解(持续更新中):
9
9
| [ 0018.四数之和] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0018.四数之和 ) | 数组 | 中等| ** 双指针** |
10
10
| [ 0021.合并两个有序链表] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0021.合并两个有序链表.md ) | 链表 | 简单| ** 模拟** |
11
11
| [ 0026.删除排序数组中的重复项] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0026.删除排序数组中的重复项.md ) | 数组 | 简单| ** 暴力** ** 快慢指针** |
12
- | [ 0027.移除元素] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0027.移除元素.md ) | 数组 | 简单| ** 暴力** ** 快慢指针** |
12
+ | [ 0027.移除元素] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0027.移除元素.md ) | 数组 | 简单| ** 暴力** ** 快慢指针/双指针 ** |
13
13
| [ 0028.实现strStr()] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0028.实现strStr().md ) | 字符串 | 简单| ** KMP** |
14
14
| [ 0035.搜索插入位置] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0035.搜索插入位置.md ) | 数组 | 简单| ** 暴力** ** 二分** |
15
15
| [ 0053.最大子序和] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0053.最大子序和.md ) | 数组 | 简单| ** 暴力** ** 贪心** 动态规划 分治|
16
16
| [ 0059.螺旋矩阵II] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0059.螺旋矩阵II.md ) | 数组 | 中等| ** 模拟** |
17
17
| [ 0083.删除排序链表中的重复元素] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0083.删除排序链表中的重复元素.md ) | 链表 | 简单| ** 模拟** |
18
- | [ 0142.环形链表II] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0142.环形链表II.md ) | 链表 | 中等| ** 模拟 ** |
18
+ | [ 0142.环形链表II] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0142.环形链表II.md ) | 链表 | 中等| ** 快慢指针/双指针 ** |
19
19
| [ 0151.翻转字符串里的单词] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0151.翻转字符串里的单词.md ) | 字符串 | 中等| ** 模拟** |
20
20
| [ 0202.快乐数] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0202.快乐数.md ) | 哈希表 | 简单| ** 哈希** |
21
21
| [ 0203.移除链表元素] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0203.移除链表元素.md ) | 链表 | 简单| ** 模拟** ** 虚拟头结点** |
@@ -34,7 +34,7 @@ LeetCode 最强题解(持续更新中):
34
34
| [ 0575.分糖果.md] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0575.分糖果.md ) | 哈希表 | 简单| ** 哈希** |
35
35
| [ 0705.设计哈希集合] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0705.设计哈希集合.md ) | 哈希表 | 简单| ** 模拟** |
36
36
| [ 0707.设计链表] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0707.设计链表.md ) | 链表 | 中等| ** 模拟** |
37
- | [ 剑指Offer05.替换空格] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/剑指Offer05.替换空格.md ) | 字符串 | 简单| ** 模拟 ** |
37
+ | [ 剑指Offer05.替换空格] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/剑指Offer05.替换空格.md ) | 字符串 | 简单| ** 双指针 ** |
38
38
39
39
Leetcode精选:
40
40
0 commit comments