Skip to content

Commit bbb991e

Browse files
committed
💖 修改一些小BUG
1 parent 53c8b39 commit bbb991e

File tree

8 files changed

+15
-13
lines changed

8 files changed

+15
-13
lines changed

src/0007.Reverse-Integer/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# [7. Reverse Integer][title]
2+
13
# Description
24

35
## Problem

src/0012.Integer-to-Roman/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [1. Add Sum][title]
1+
# [12. Integer to Roman][title]
22
## Description
33

44
Roman numerals are represented by seven different symbols: `I`, `V`, `X`, `L`, `C`, `D` and `M`.
@@ -98,5 +98,5 @@ func intToRoman(num int) string {
9898

9999
如果你同我一样热爱数据结构、算法、LeetCode,可以关注我 GitHub 上的 LeetCode 题解:[awesome-golang-leetcode][me]
100100

101-
[title]: https://leetcode.com/problems/two-sum/description/
101+
[title]: https://leetcode.com/problems/integer-to-roman/description/
102102
[me]: https://github.com/kylesliu/awesome-golang-leetcode

src/0022.Generate-Parentheses/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [1. Add Sum][title]
1+
# [22. Generate Parentheses][title]
22

33
## Description
44

@@ -61,5 +61,5 @@ func dp(prefix string, depth int, n int) []string {
6161

6262
如果你同我一样热爱数据结构、算法、LeetCode,可以关注我 GitHub 上的 LeetCode 题解:[awesome-golang-leetcode][me]
6363

64-
[title]: https://leetcode.com/problems/two-sum/description/
64+
[title]: https://leetcode.com/problems/generate-parentheses/description/
6565
[me]: https://github.com/kylesliu/awesome-golang-leetcode

src/0024.Swap-Nodes-in-Pairs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [1. Add Sum][title]
1+
# [24. Swap Nodes in Pairs][title]
22

33
## Description
44

@@ -63,5 +63,5 @@ func swapPairs(head *ListNode) *ListNode {
6363

6464
如果你同我一样热爱数据结构、算法、LeetCode,可以关注我 GitHub 上的 LeetCode 题解:[awesome-golang-leetcode][me]
6565

66-
[title]: https://leetcode.com/problems/two-sum/description/
66+
[title]: https://leetcode.com/problems/swap-nodes-in-pairs/description/
6767
[me]: https://github.com/kylesliu/awesome-golang-leetcode

src/0029.Divide-Two-Integers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ Output: -2
5454

5555
如果你同我一样热爱数据结构、算法、LeetCode,可以关注我 GitHub 上的 LeetCode 题解:[awesome-golang-leetcode][me]
5656

57-
[title]: https://leetcode.com/problems/two-sum/description/
57+
[title]: https://leetcode.com/problems/divide-two-integers/description/
5858
[me]: https://github.com/kylesliu/awesome-golang-leetcode

src/0043.Multiply-Strings/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [1. Add Sum][title]
1+
# [43. Multiply Strings][title]
22

33
## Description
44

@@ -79,5 +79,5 @@ func multiply(num1 string, num2 string) string {
7979

8080
如果你同我一样热爱数据结构、算法、LeetCode,可以关注我 GitHub 上的 LeetCode 题解:[awesome-golang-leetcode][me]
8181

82-
[title]: https://leetcode.com/problems/two-sum/description/
82+
[title]: https://leetcode.com/problems/multiply-strings/description/
8383
[me]: https://github.com/kylesliu/awesome-golang-leetcode

src/0049.Group-Anagrams/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [https://leetcode.com/problems/group-anagrams/description/][title]
1+
# [49. Group Anagrams][title]
22

33
## Description
44

@@ -45,5 +45,5 @@ Output:
4545

4646
如果你同我一样热爱数据结构、算法、LeetCode,可以关注我 GitHub 上的 LeetCode 题解:[awesome-golang-leetcode][me]
4747

48-
[title]: https://leetcode.com/problems/two-sum/description/
48+
[title]: https://leetcode.com/problems/group-anagrams/
4949
[me]: https://github.com/kylesliu/awesome-golang-leetcode

src/0053.Maximum-Subarray/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [1. Add Sum][title]
1+
# [53. Maximum Subarray][title]
22

33
## Description
44

@@ -48,6 +48,6 @@ func maxSubArray(nums []int) int {
4848

4949
如果你同我一样热爱数据结构、算法、LeetCode,可以关注我 GitHub 上的 LeetCode 题解:[awesome-golang-leetcode][me]
5050

51-
[title]: https://leetcode.com/problems/maximum-subarray/
51+
[title]: https://leetcode.com/problems/maximum-subarray/description/
5252
[me]: https://github.com/kylesliu/awesome-golang-leetcode
5353

0 commit comments

Comments
 (0)