Skip to content

Commit 95447b1

Browse files
更新 readme 模版
1 parent 83444b9 commit 95447b1

File tree

3 files changed

+38
-9
lines changed

3 files changed

+38
-9
lines changed

README.md

Lines changed: 28 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,35 @@
33
* 英文官网: https://leetcode.com
44
* 中文官网: https://leetcode-cn.com
55

6-
## 1.LeetCode 习题集合
6+
> <font color=red>slogan: **不想装逼的朋友,我们都不想认识**</font>
7+
8+
* **LeetCode 刷题群 | ApacheCN【812791932】<a target="_blank" href="//shang.qq.com/wpa/qunwpa?idkey=1d390faa76fe789a0068dadae4ab9b0f0fc7997c38f216e9a30172866163a49d"><img border="0" src="/images/MainPage/ApacheCN-group.png" alt="LeetCode 刷题 | ApacheCN " title="LeetCode 刷题 | ApacheCN "></a>**
9+
* [<font color=green>ApacheCN repo 地址</font>](https://github.com/apachecn/leetcode): https://github.com/apachecn/leetcode
10+
* **<font color=green>ApacheCN 网友捐赠页面</font>:http://www.apachecn.org/organization/664.html**
11+
12+
## LeetCode 习题集合
713

814
* [LeetCode 习题集合](/docs/Leetcode_Solutions)
915

10-
## 2.算法 集合
16+
## 算法 汇总集合
1117

12-
* [算法 集合](/docs/Algorithm)
18+
* [算法 汇总集合](/docs/Algorithm)
1319
* [八大排序算法 集合](/docs/Algorithm/Sort)
1420
* [Wikipedia: List of Algorithms](https://en.wikipedia.org/wiki/List_of_algorithms)
1521

16-
## 推荐的一些LeetCode网站
22+
## 模版要求
23+
24+
> 基本要求(提交PR前)
25+
26+
* 要不:有不一样的思路
27+
* 要不:优化时间复杂度和空间复杂度
28+
* 要不:简化代码
29+
30+
> **案例模版**
31+
32+
[模版:1. Two Sum 两数之和](/docs/Leetcode_Solutions/001._two_sum.md)
33+
34+
## 推荐 LeetCode 网站
1735

1836
1. [KrisYu的Github](https://github.com/KrisYu/LeetCode-CLRS-Python)
1937
2. [kamyu104的Github](https://github.com/kamyu104/LeetCode)
@@ -27,8 +45,13 @@
2745
10. [小土刀的面试刷题笔记](http://wdxtub.com/interview/14520594642530.html)
2846
11. [nonstriater/Learn-Algorithms](https://github.com/nonstriater/Learn-Algorithms)
2947
12. [剑指 Offer 题解](https://github.com/gatieme/CodingInterviews)
48+
13. https://algorithm.yuanbin.me/zh-hans
49+
14. https://github.com/liuchuo/LeetCode
50+
15. https://github.com/anxiangSir/SwordforOffer
51+
16. https://www.nowcoder.com/ta/coding-interviews?page=1
52+
17. 【小姐姐】刷题博客:https://www.liuchuo.net/about
3053

31-
### Please note, this repository is inspired from [KrisYu](https://github.com/KrisYu/LeetCode-CLRS-Python). However, it has been modified, added and improved to reflect our knowledge, wisdom and effort.
54+
> Please note, this repository is inspired from [KrisYu](https://github.com/KrisYu/LeetCode-CLRS-Python). However, it has been modified, added and improved to reflect our knowledge, wisdom and effort.
3255
3356
- 💪 就是干!如果你觉得有帮助请点个star,谢谢!
3457

docs/Leetcode_Solutions/001._two_sum.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# 1. Two Sum 两数之和
22

3-
## 题目:
3+
**<font color=red>难度: Easy</font>**
44

5-
* https://leetcode.com/problems/two-sum/
6-
* https://leetcode-cn.com/problems/two-sum/description/
5+
## 刷题内容
6+
7+
> 原题连接
8+
9+
* https://leetcode.com/problems/two-sum
10+
* https://leetcode-cn.com/problems/two-sum/description
11+
12+
> 内容描述
713
814
```
915
给定 nums = [2, 7, 11, 15], target = 9
@@ -12,7 +18,7 @@
1218
所以返回 [0, 1]
1319
```
1420

15-
## 难度: Easy
21+
## 解决方案
1622

1723
> 思路 1
1824

images/MainPage/ApacheCN-group.png

1.78 KB
Loading

0 commit comments

Comments
 (0)