Skip to content

Commit fc1ce14

Browse files
committed
update readme
1 parent 98720cf commit fc1ce14

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

Array/01.TwoSum/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Two Sum
2-
LeetCode 1
3-
[English](https://leetcode.com/problems/two-sum/)
4-
[中文](https://leetcode-cn.com/problems/two-sum/)
2+
**LeetCode 1**
3+
4+
- [英文版](https://leetcode.com/problems/two-sum/)
5+
6+
- [中文版](https://leetcode-cn.com/problems/two-sum/)
57

68
## 题目
79
给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那*两个*整数,并返回他们的数组下标。

Array/02.ThreeSum/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Three Sum
2-
LeetCode 15
3-
[English](https://leetcode.com/problems/3sum/)
4-
[中文](https://leetcode-cn.com/problems/3sum/)
2+
**LeetCode 15**
3+
4+
- [英文版](https://leetcode.com/problems/3sum/)
5+
6+
- [中文版](https://leetcode-cn.com/problems/3sum/)
57

68
## 题目
79
给定一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?找出所有满足条件且不重复的三元组。

0 commit comments

Comments
 (0)