File tree Expand file tree Collapse file tree 2 files changed +20
-10
lines changed Expand file tree Collapse file tree 2 files changed +20
-10
lines changed Original file line number Diff line number Diff line change 11# leetcode
2- LeetCode 题解
3- | 题目 | 类型| 建议刷题顺序 | 解题方法 |
4- | ---| ---| --- | --- |
5- | [ 0035.搜索插入位置] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0035.搜索插入位置.md ) | | | |
6- | [ 0000.两数之和] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0000.%E4%B8%A4%E6%95%B0%E4%B9%8B%E5%92%8C.md ) | | | |
2+ LeetCode 最强题解
3+ | 题目 | 类型 | 解题方法 |
4+ | ---| ---| ---|
5+ | [ 0000.两数之和] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0000.%E4%B8%A4%E6%95%B0%E4%B9%8B%E5%92%8C.md ) | 数组| ** 暴力** ** 哈希** |
6+
7+ | [ 0021.合并两个有序链表] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0021.合并两个有序链表.md ) | 链表 | ** 模拟** |
8+ | [ 0026.删除排序数组中的重复项] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0026.删除排序数组中的重复项.md ) | 数组 | ** 暴力** ** 快慢指针** |
9+ | [ 0027.移除元素] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0027.移除元素.md ) | 数组 | ** 暴力** 、** 快慢指针** |
10+ | [ 0035.搜索插入位置] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0035.搜索插入位置.md ) | 数组 | ** 暴力** 、** 二分** |
11+
12+ | [ 0053.最大子序和] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0053.最大子序和.md ) | 数组 | ** 暴力** ** 贪心** 动态规划 分治|
13+ | [ 0059.螺旋矩阵II] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0059.螺旋矩阵II.md ) | 数组 | ** 模拟** |
14+ | [ 0209.长度最小的子数组] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0209.长度最小的子数组.md ) | 数组 | ** 暴力** ** 滑动窗口** |
15+ | [ 0237.删除链表中的节点] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0237.删除链表中的节点.md ) | 链表 | ** 暴力** |
16+ | [ 0383.赎金信] ( https://github.com/youngyangyang04/leetcode/blob/master/problems/0383.赎金信.md ) | 数组 | ** 暴力** ** 字典计数** |
17+
18+ > 笔者介绍
19+ > ACM亚洲区域赛铜牌获得者,哈工大计算机硕士毕业后,先后在腾讯和百度工作多年,对算法和后端技术有一定的见解
20+ > 欢迎关注公众号:「代码随想录」这里将持续分享自己对互联网以及技术的想法与思考
21+
Original file line number Diff line number Diff line change @@ -63,8 +63,3 @@ public:
6363 }
6464};
6565```
66- ## 代码
67-
68- ```C++
69-
70- ```
You can’t perform that action at this time.
0 commit comments