提交 95447b10 编写于 作者: 片刻小哥哥's avatar 片刻小哥哥

更新 readme 模版

上级 83444b91
......@@ -3,17 +3,35 @@
* 英文官网: https://leetcode.com
* 中文官网: https://leetcode-cn.com
## 1.LeetCode 习题集合
> <font color=red>slogan: **不想装逼的朋友,我们都不想认识**</font>
* **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>**
* [<font color=green>ApacheCN repo 地址</font>](https://github.com/apachecn/leetcode): https://github.com/apachecn/leetcode
* **<font color=green>ApacheCN 网友捐赠页面</font>:http://www.apachecn.org/organization/664.html**
## LeetCode 习题集合
* [LeetCode 习题集合](/docs/Leetcode_Solutions)
## 2.算法 集合
## 算法 汇总集合
* [算法 集合](/docs/Algorithm)
* [算法 汇总集合](/docs/Algorithm)
* [八大排序算法 集合](/docs/Algorithm/Sort)
* [Wikipedia: List of Algorithms](https://en.wikipedia.org/wiki/List_of_algorithms)
## 推荐的一些LeetCode网站
## 模版要求
> 基本要求(提交PR前)
* 要不:有不一样的思路
* 要不:优化时间复杂度和空间复杂度
* 要不:简化代码
> **案例模版**
[模版:1. Two Sum 两数之和](/docs/Leetcode_Solutions/001._two_sum.md)
## 推荐 LeetCode 网站
1. [KrisYu的Github](https://github.com/KrisYu/LeetCode-CLRS-Python)
2. [kamyu104的Github](https://github.com/kamyu104/LeetCode)
......@@ -27,8 +45,13 @@
10. [小土刀的面试刷题笔记](http://wdxtub.com/interview/14520594642530.html)
11. [nonstriater/Learn-Algorithms](https://github.com/nonstriater/Learn-Algorithms)
12. [剑指 Offer 题解](https://github.com/gatieme/CodingInterviews)
13. https://algorithm.yuanbin.me/zh-hans
14. https://github.com/liuchuo/LeetCode
15. https://github.com/anxiangSir/SwordforOffer
16. https://www.nowcoder.com/ta/coding-interviews?page=1
17. 【小姐姐】刷题博客:https://www.liuchuo.net/about
### 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.
> 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.
- 💪 就是干!如果你觉得有帮助请点个star,谢谢!
......
# 1. Two Sum 两数之和
## 题目:
**<font color=red>难度: Easy</font>**
* https://leetcode.com/problems/two-sum/
* https://leetcode-cn.com/problems/two-sum/description/
## 刷题内容
> 原题连接
* https://leetcode.com/problems/two-sum
* https://leetcode-cn.com/problems/two-sum/description
> 内容描述
```
给定 nums = [2, 7, 11, 15], target = 9
......@@ -12,7 +18,7 @@
所以返回 [0, 1]
```
## 难度: Easy
## 解决方案
> 思路 1
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册