Skip to content

Commit 6be35f4

Browse files
author
lucifer
committed
2 parents 5b68063 + 1b3cce1 commit 6be35f4

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
- drawio 文件 或者图片(如果你画图的话)
1717

1818
> 模板可参考 [1014.best-sightseeing-pair](./templates/problems/1014.best-sightseeing-pair.md)
19+
> 也可以使用其他画图工具,比如 https://excalidraw.com/ 或者 draw.io 或者 processon 或者 ipad 画图
1920
2021
## 贡献每日一题
2122

README.en.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515

1616
![leetcode.jpeg](./assets/leetcode.jpeg)
1717

18-
This essay records the course of and my emotion to this project from initialisation to 10,000 stars.
18+
This essay records the course of and my emotion to this project from initialization to 10,000 stars.
1919
[Milestone for 10,000+ stars](./thanksGiving.md)
2020

21-
If you are interested in this project, **do not mean your star**. This project will be **supported for a long enough time** by the comminity. Thanks for every audience and contributor.
21+
If you are interested in this project, **do not mean your star**. This project will be **supported for a long enough time** by the community. Thanks for every audience and contributor.
2222

2323
## Introduction
2424

@@ -36,15 +36,15 @@ This repository is divided into five parts for now:
3636

3737
- The fourth part is daily challenges which were held at group chat. We usually solve one problem altogether to get more feedback. Moreover, the problems can be drafted to add to the problem solving module.
3838

39-
- The fifth part is a future plannning on content that will be introduced into the above parts.
39+
- The fifth part is a future planning on content that will be introduced into the above parts.
4040

4141
> Only when having mastered the basic data structures and algorithms can you solve complex problems easily.
4242
4343
## About me
4444

4545
I, a programmer, am all passionate about technology.
4646

47-
Used to write `.net` and `Java`, I am a frontend engineer and focused on the engineering, optimization and standardlization for frontend.
47+
Used to write `.net` and `Java`, I am a frontend engineer and focused on the engineering, optimization and standardization for frontend.
4848

4949
If you want to do some contributions or collaborations, just feel free to contact me via [[email protected]].
5050

@@ -59,15 +59,15 @@ If you want to do some contributions or collaborations, just feel free to contac
5959

6060
(Picture credited by [LeetCode-cn](https://www.zhihu.com/question/24964987/answer/586425979).)
6161

62-
The algorithms mainly includes:
62+
The algorithms mainly include:
6363

6464
- Basic skills: Divide-and-Conquer; Binary; Greedy
6565
- Sorting algorithms: Quicksort; Merge Sort; Counting Sort
6666
- Searching algorithms: Backtracking; Recursion; Depth-First-Search (DFS); Breath-First-Search (BFS); Binary Search Tree; etc.
6767
- Graph theory: Shortest Path Problem; Minimal Spanning Tree
6868
- Dynamic Programming: Knapsack Problem; Longest Common Subsequence (LCS) Problem
6969

70-
The data structures mainly includes:
70+
The data structures mainly include:
7171

7272
- Array and linked list: Singly/Doubly-Linked List
7373
- Stack and queue

problems/23.merge-k-sorted-lists.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ https://leetcode-cn.com/problems/merge-k-sorted-lists/description/
3737
## 关键点解析
3838

3939
- 分治
40-
- 合并排序(merge sort)
40+
- 归并排序(merge sort)
4141

4242
## 代码
4343

@@ -159,4 +159,4 @@ class Solution:
159159

160160
## 相关题目
161161

162-
-[88.merge-sorted-array](./88.merge-sorted-array.md)
162+
- [88.merge-sorted-array](./88.merge-sorted-array.md)

problems/46.permutations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ class Solution:
170170
- [39.combination-sum](./39.combination-sum.md)
171171
- [40.combination-sum-ii](./40.combination-sum-ii.md)
172172
- [47.permutations-ii](./47.permutations-ii.md)
173-
- [60.permutation-sequence](./60.permutation-sequence.md)(TODO)
173+
- [60.permutation-sequence](./60.permutation-sequence.md)
174174
- [78.subsets](./78.subsets.md)
175175
- [90.subsets-ii](./90.subsets-ii.md)
176176
- [113.path-sum-ii](./113.path-sum-ii.md)

0 commit comments

Comments
 (0)