Skip to content

Commit 5af5070

Browse files
committedJun 25, 2020
update readme
1 parent 4d86a6d commit 5af5070

File tree

11 files changed

+40
-29
lines changed

11 files changed

+40
-29
lines changed
 

‎_navbar.md

-5
This file was deleted.

‎index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
auto2top: true,
3333
executeScript: true,
3434
loadSidebar: true,
35-
loadNavbar: true,
35+
// loadNavbar: true,
3636
mergeNavbar: true,
3737
maxLevel: 4,
3838
subMaxLevel: 2,
@@ -57,7 +57,7 @@
5757
hook.beforeEach(function (html) {
5858
url = 'https://github.com/lxlxw/leetcode/blob/master/' + vm.route.file
5959

60-
var editHtml = '[:memo: 在 GitHub 编辑本页](' + url + ')\n'
60+
var editHtml = '[📝 在 GitHub 编辑本页](' + url + ')\n'
6161

6262
return editHtml
6363
+ html

‎solution/1-99/0001.two-sum/README.md

-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222

2323
### 代码实现
2424

25-
<!-- tabs:start -->
2625

2726
#### **Golang**
2827
```go
@@ -37,6 +36,3 @@ func twoSum(nums []int, target int) []int {
3736
return []int{}
3837
}
3938
```
40-
41-
42-
<!-- tabs:end -->

‎solution/1-99/0002.add-two-numbers/README.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222

2323
### 具体解法
2424

25-
<!-- tabs:start -->
2625

2726
#### **Golang**
2827
```go
@@ -52,6 +51,4 @@ func addTwoNumbers(l1 *ListNode, l2 *ListNode) *ListNode {
5251
}
5352
return dummy.Next
5453
}
55-
```
56-
57-
<!-- tabs:end -->
54+
```

‎solution/1-99/0003.longest-substring-without-repeating-characters/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,8 @@
3333

3434
### 具体解法
3535

36-
<!-- tabs:start -->
3736

3837
#### **Golang**
3938
```go
4039

4140
```
42-
43-
<!-- tabs:end -->

‎solution/1-99/0004.median-of-two-sorted-arrays/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,10 @@ nums2 = [3, 4]
3131

3232
### 具体解法
3333

34-
<!-- tabs:start -->
3534

3635
#### **Golang**
3736
```go
3837

3938
```
4039

41-
<!-- tabs:end -->
4240

‎solution/1-99/0005.longest-palindromic-substring/README.md

-4
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,8 @@
2424

2525
### 具体解法
2626

27-
<!-- tabs:start -->
2827

2928
#### **Golang**
3029
```go
3130

3231
```
33-
34-
<!-- tabs:end -->
35-

‎solution/1-99/0006.zigzag-conversion/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,10 @@ T S G</pre>
4141

4242
### 具体解法
4343

44-
<!-- tabs:start -->
4544

4645
#### **Golang**
4746
```go
4847

4948
```
5049

51-
<!-- tabs:end -->
5250

‎solution/1-99/0007.reverse-integer/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535

3636
### 代码实现
3737

38-
<!-- tabs:start -->
3938

4039
#### **Golang**
4140
```go
@@ -53,5 +52,3 @@ func reverse(x int) int {
5352
return ret
5453
}
5554
```
56-
57-
<!-- tabs:end -->

‎solution/1-99/0015.3sum/README.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# [15. xxx](https://leetcode-cn.com/problems/longest-common-prefix)
2+
3+
### 题目描述
4+
5+
6+
7+
### 解题思路
8+
9+
10+
### 具体解法
11+
12+
<!-- tabs:start -->
13+
14+
#### **Golang**
15+
```go
16+
17+
```
18+
19+
<!-- tabs:end -->
20+
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# [46. xxx](https://leetcode-cn.com/problems/jump-game-ii)
2+
3+
### 题目描述
4+
5+
6+
7+
8+
### 解题思路
9+
10+
11+
### 具体解法
12+
13+
#### **Golang**
14+
```go
15+
16+
```
17+

0 commit comments

Comments
 (0)