Skip to content

Commit 7753159

Browse files
committed
Replaced , to Chinese comma.
1 parent 4d8d409 commit 7753159

24 files changed

Lines changed: 24 additions & 23 deletions

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,5 +116,6 @@ You can skip the more difficult problems and do them later.
116116
- [207. Course Schedule](en/1-1000/207-course-schedule.md) was solved in _Python, Java, C++, C#_ and 2 ways.
117117
- [1514. Path with Maximum Probability](en/1001-2000/1514-path-with-maximum-probability.md) was solved in _Python_ and 2 ways.
118118
- [743. Network Delay Time](en/1-1000/743-network-delay-time.md) was solved in _Python_ and 2 ways.
119+
- [787. Cheapest Flights Within K Stops](en/1-1000/787-cheapest-flights-within-k-stops.md) was solved in _Python_.
119120

120121
More LeetCode problems will be added soon.

en/1-1000/232-implement-queue-using-stacks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ MyQueue.prototype.fillOutIfEmpty = function () {
151151
```
152152

153153
## 力扣“232. 用栈实现队列”问题描述
154-
力扣链接:[232. 用栈实现队列](https://leetcode.cn/problems/implement-queue-using-stacks), 难度: **简单**
154+
力扣链接:[232. 用栈实现队列](https://leetcode.cn/problems/implement-queue-using-stacks) ,难度:**简单**
155155

156156
请你仅使用两个栈实现先入先出队列。队列应当支持一般队列支持的所有操作(`push``pop``peek``empty`):
157157

en/1-1000/344-reverse-string.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ end
216216
```
217217

218218
## 力扣“344. 反转字符串”问题描述
219-
力扣链接:[344. 反转字符串](https://leetcode.cn/problems/reverse-string), 难度: **简单**
219+
力扣链接:[344. 反转字符串](https://leetcode.cn/problems/reverse-string) ,难度:**简单**
220220

221221
编写一个函数,其作用是将输入的字符串反转过来。输入字符串以字符数组 `s` 的形式给出。
222222

en/1-1000/383-ransom-note.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public class Solution
201201
```
202202

203203
## 力扣问题描述
204-
[383. 赎金信](https://leetcode.cn/problems/ransom-note), 难度: **简单**
204+
[383. 赎金信](https://leetcode.cn/problems/ransom-note) ,难度:**简单**
205205

206206
给你两个字符串:`ransomNote``magazine` ,判断 `ransomNote` 能不能由 `magazine` 里面的字符构成。
207207

en/1-1000/416-partition-equal-subset-sum.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ end
475475
```
476476

477477
## 力扣“416. 分割等和子集”问题描述
478-
力扣链接:[416. 分割等和子集](https://leetcode.cn/problems/partition-equal-subset-sum), 难度: **中等**
478+
力扣链接:[416. 分割等和子集](https://leetcode.cn/problems/partition-equal-subset-sum) ,难度:**中等**
479479

480480
给你一个 **只包含正整数****非空** 数组 `nums` 。请你判断是否可以将这个数组分割成两个子集,使得两个子集的元素和相等。
481481

en/1-1000/541-reverse-string-ii.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ end
218218
```
219219

220220
## 力扣“541. 反转字符串 II”问题描述
221-
力扣链接:[541. 反转字符串 II](https://leetcode.cn/problems/reverse-string-ii), 难度: **简单**
221+
力扣链接:[541. 反转字符串 II](https://leetcode.cn/problems/reverse-string-ii) ,难度:**简单**
222222

223223
给定一个字符串 `s` 和一个整数 `k`,从字符串开头算起,每计数至 `2k` 个字符,就反转这 `2k` 字符中的前 `k` 个字符。
224224

zh/1-1000/1-two-sum.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 1. 两数之和 - 力扣题解最佳实践
2-
力扣链接:[1. 两数之和](https://leetcode.cn/problems/two-sum), 难度: **简单**
2+
力扣链接:[1. 两数之和](https://leetcode.cn/problems/two-sum) ,难度:**简单**
33

44
## 力扣“1. 两数之和”问题描述
55
给定一个整数数组 `nums` 和一个整数目标值 `target`,请你在该数组中找出 **和为目标值** `target` 的那 **两个** 整数,并返回它们的数组下标。

zh/1-1000/15-3sum.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 15. 三数之和 - 力扣题解最佳实践
2-
力扣链接:[15. 三数之和](https://leetcode.cn/problems/3sum), 难度: **中等**
2+
力扣链接:[15. 三数之和](https://leetcode.cn/problems/3sum) ,难度:**中等**
33

44
## 力扣“15. 三数之和”问题描述
55
给你一个整数数组 `nums` ,判断是否存在三元组 `[nums[i], nums[j], nums[k]]` 满足 `i != j``i != k``j != k` ,同时还满足 `nums[i] + nums[j] + nums[k] == 0` 。请你返回所有和为 `0` 且不重复的三元组。

zh/1-1000/160-intersection-of-two-linked-lists.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 160. 相交链表 - 力扣题解最佳实践
2-
力扣链接:[160. 相交链表](https://leetcode.cn/problems/intersection-of-two-linked-lists), 难度: **简单**
2+
力扣链接:[160. 相交链表](https://leetcode.cn/problems/intersection-of-two-linked-lists) ,难度:**简单**
33

44
## 力扣“160. 相交链表”问题描述
55
给你两个单链表的头节点 `headA``headB` ,请你找出并返回两个单链表相交的起始节点。如果两个链表不存在相交节点,返回 `null`

zh/1-1000/18-4sum.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 18. 四数之和 - 力扣题解最佳实践
2-
力扣链接:[18. 四数之和](https://leetcode.cn/problems/4sum), 难度: **中等**
2+
力扣链接:[18. 四数之和](https://leetcode.cn/problems/4sum) ,难度:**中等**
33

44
## 力扣“18. 四数之和”问题描述
55
给你一个由 `n` 个整数组成的数组 `nums` ,和一个目标值 `target` 。请你找出并返回满足下述全部条件且**不重复**的四元组 `[nums[a], nums[b], nums[c], nums[d]]` (若两个四元组元素一一对应,则认为两个四元组重复):

0 commit comments

Comments
 (0)