Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit bdeea1f

Browse files
committed
更新 README.md
1 parent 0b94e1d commit bdeea1f

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [LeetCode](https://leetcode.com) 的 Go 解答
22

3-
[![LeetCode 排名](https://img.shields.io/badge/aQuaYi-554-blue.svg)](https://leetcode.com/aQuaYi/)
3+
[![LeetCode 排名](https://img.shields.io/badge/aQuaYi-552-blue.svg)](https://leetcode.com/aQuaYi/)
44
[![codecov](https://codecov.io/gh/aQuaYi/LeetCode-in-Go/branch/master/graph/badge.svg)](https://codecov.io/gh/aQuaYi/LeetCode-in-Go)
55
[![Build Status](https://www.travis-ci.org/aQuaYi/LeetCode-in-Go.svg?branch=master)](https://www.travis-ci.org/aQuaYi/LeetCode-in-Go)
66
[![Go](https://img.shields.io/badge/Golang-1.12-blue.svg)](https://golang.google.cn)
@@ -11,14 +11,14 @@
1111
1212
| |Easy|Medium|Hard|Total|
1313
|:---:|:---:|:---:|:---:|:---:|
14-
|**Accepted**|253|434|180|867|
14+
|**Accepted**|253|435|180|868|
1515
|**Total**|255|441|182|878|
1616

1717
## 题解
1818

1919
|题号|题目|通过率|难度|收藏|
2020
|:-:|:-|:-: | :-: | :-: |
21-
|[1140](https://leetcode.com/problems/stone-game-ii/)| * Stone Game II :new: |60%|Medium||
21+
|[1140](https://leetcode.com/problems/stone-game-ii/)| * Stone Game II :new: |61%|Medium||
2222
|[1139](https://leetcode.com/problems/largest-1-bordered-square/)| * Largest 1-Bordered Square :new: |41%|Medium||
2323
|[1138](https://leetcode.com/problems/alphabet-board-path/)| * Alphabet Board Path :new: |41%|Medium||
2424
|[1137](https://leetcode.com/problems/n-th-tribonacci-number/)| * N-th Tribonacci Number|63%|Easy||
@@ -27,7 +27,7 @@
2727
|[1129](https://leetcode.com/problems/shortest-path-with-alternating-colors/)| * Shortest Path with Alternating Colors|35%|Medium||
2828
|[1128](https://leetcode.com/problems/number-of-equivalent-domino-pairs/)| * Number of Equivalent Domino Pairs|43%|Easy||
2929
|[1125](https://leetcode.com/problems/smallest-sufficient-team/)| * Smallest Sufficient Team|45%|Hard||
30-
|[1124](https://leetcode.com/problems/longest-well-performing-interval/)| * Longest Well-Performing Interval|29%|Medium||
30+
|[1124](https://leetcode.com/problems/longest-well-performing-interval/)|[Longest Well-Performing Interval](./Algorithms/1124.longest-well-performing-interval)|29%|Medium||
3131
|[1123](https://leetcode.com/problems/lowest-common-ancestor-of-deepest-leaves/)|[Lowest Common Ancestor of Deepest Leaves](./Algorithms/1123.lowest-common-ancestor-of-deepest-leaves)|63%|Medium||
3232
|[1122](https://leetcode.com/problems/relative-sort-array/)|[Relative Sort Array](./Algorithms/1122.relative-sort-array)|67%|Easy||
3333
|[1111](https://leetcode.com/problems/maximum-nesting-depth-of-two-valid-parentheses-strings/)|[Maximum Nesting Depth of Two Valid Parentheses Strings](./Algorithms/1111.maximum-nesting-depth-of-two-valid-parentheses-strings)|64%|Medium||
@@ -236,7 +236,7 @@
236236
|[0873](https://leetcode.com/problems/length-of-longest-fibonacci-subsequence/)|[Length of Longest Fibonacci Subsequence](./Algorithms/0873.length-of-longest-fibonacci-subsequence)|46%|Medium||
237237
|[0872](https://leetcode.com/problems/leaf-similar-trees/)|[Leaf-Similar Trees](./Algorithms/0872.leaf-similar-trees)|63%|Easy||
238238
|[0871](https://leetcode.com/problems/minimum-number-of-refueling-stops/)|[Minimum Number of Refueling Stops](./Algorithms/0871.minimum-number-of-refueling-stops)|29%|Hard||
239-
|[0870](https://leetcode.com/problems/advantage-shuffle/)|[Advantage Shuffle](./Algorithms/0870.advantage-shuffle)|42%|Medium||
239+
|[0870](https://leetcode.com/problems/advantage-shuffle/)|[Advantage Shuffle](./Algorithms/0870.advantage-shuffle)|43%|Medium||
240240
|[0869](https://leetcode.com/problems/reordered-power-of-2/)|[Reordered Power of 2](./Algorithms/0869.reordered-power-of-2)|51%|Medium||
241241
|[0868](https://leetcode.com/problems/binary-gap/)|[Binary Gap](./Algorithms/0868.binary-gap)|59%|Easy||
242242
|[0867](https://leetcode.com/problems/transpose-matrix/)|[Transpose Matrix](./Algorithms/0867.transpose-matrix)|63%|Easy||

leetcode.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
22
"Username": "aQuaYi",
3-
"Ranking": 554,
4-
"Updated": "2019-07-31T16:43:30.168085221+08:00",
3+
"Ranking": 552,
4+
"Updated": "2019-07-31T21:16:39.202956556+08:00",
55
"Record": {
66
"Easy": {
77
"Solved": 253,
88
"Total": 255
99
},
1010
"Medium": {
11-
"Solved": 434,
11+
"Solved": 435,
1212
"Total": 441
1313
},
1414
"Hard": {
1515
"Solved": 180,
1616
"Total": 182
1717
},
1818
"Total": {
19-
"Solved": 867,
19+
"Solved": 868,
2020
"Total": 878
2121
}
2222
},
@@ -10465,7 +10465,7 @@
1046510465
"ID": 870,
1046610466
"Title": "Advantage Shuffle",
1046710467
"TitleSlug": "advantage-shuffle",
10468-
"PassRate": "42%",
10468+
"PassRate": "43%",
1046910469
"Difficulty": "Medium",
1047010470
"IsAccepted": true,
1047110471
"IsPaid": false,
@@ -13515,7 +13515,7 @@
1351513515
"TitleSlug": "longest-well-performing-interval",
1351613516
"PassRate": "29%",
1351713517
"Difficulty": "Medium",
13518-
"IsAccepted": false,
13518+
"IsAccepted": true,
1351913519
"IsPaid": false,
1352013520
"IsFavor": false,
1352113521
"IsNew": false,
@@ -13705,7 +13705,7 @@
1370513705
"ID": 1140,
1370613706
"Title": "Stone Game II",
1370713707
"TitleSlug": "stone-game-ii",
13708-
"PassRate": "60%",
13708+
"PassRate": "61%",
1370913709
"Difficulty": "Medium",
1371013710
"IsAccepted": false,
1371113711
"IsPaid": false,

0 commit comments

Comments
 (0)