Skip to content

Commit 7bb77d0

Browse files
committed
💖 测试更新Readme
1 parent 2014aa4 commit 7bb77d0

File tree

1 file changed

+51
-11
lines changed

1 file changed

+51
-11
lines changed

README.md

Lines changed: 51 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,28 @@ LeetCode of algorithms with golang solution(updating:smiley:).
88
</div>
99

1010

11-
| # | Title | Solution | Acceptance | Difficulty | Star |
11+
| # | Title | Solution | Acceptance | Difficulty | Tag |
1212
| :--- | :--------------- | :------------- | :------------- | :------------- | :------------- |
13-
| 1 | [Two Sum][0001-url] | [Golang][0001-golang] | 39.0% |Array, Hash Table |:sparkling_heart:|
14-
| 2 | [Add Two Numbers][0002-url] | [Golang][0002-golang] | 29.2% |Array, Hash Table |:sparkling_heart:|
15-
| 3 | [Longest Substring Without Repeating Characters][0003-url] | [Golang][0003-golang] | 25.1% |Array, Hash Table |:sparkling_heart:|
16-
| 4 | [Median of Two Sorted Arrays ][0004-url] | [Golang][0004-golang] | 24.1% |Array, Hash Table | |
17-
| 5 | [Longest Palindromic Substring ][0005-url] | [Golang][0005-golang] | 25.6% |Array, Hash Table | |
18-
| 6 | [ZigZag Conversion][0006-url] | [Golang][0006-golang] |28.8% |Array, Hash Table | |
19-
| 7 | [Reverse Integer][0007-url] | [Golang][0007-golang] | 24.5% |Array, Hash Table | |
20-
| 8 | [String to Integer (atoi)][0008-url] | [Golang][0008-golang] | 14.2% |Array, Hash Table | |
21-
| 9 | [Palindrome Number][0009-url] | [Golang][0009-golang] | 38.9% |Array, Hash Table | |
22-
| 10 | [Regular Expression Matching][0010-url] | [Golang][nil] | 24.4% |Array, Hash Table | |
13+
| 1 | [Two Sum][0001-url] | [Golang][0001-golang] | 39.0% |:purple_heart: |:eyes:|
14+
| 2 | [Add Two Numbers][0002-url] | [Golang][0002-golang] | 29.2% |:purple_heart: |:star:|
15+
| 3 | [Longest Substring Without Repeating Characters][0003-url] | [Golang][0003-golang] | 25.1% |:purple_heart: |:eyes:|
16+
| 4 | [Median of Two Sorted Arrays ][0004-url] | [Golang][0004-golang] | 24.1% |:purple_heart: |:eyes: |
17+
| 5 | [Longest Palindromic Substring ][0005-url] | [Golang][0005-golang] | 25.6% |:purple_heart: |:eyes: |
18+
| 6 | [ZigZag Conversion][0006-url] | [Golang][0006-golang] |28.8% |:purple_heart: |:eyes: |
19+
| 7 | [Reverse Integer][0007-url] | [Golang][0007-golang] | 24.5% |:purple_heart: |:eyes: |
20+
| 8 | [String to Integer (atoi)][0008-url] | [Golang][0008-golang] | 14.2% |:purple_heart: |:eyes: |
21+
| 9 | [Palindrome Number][0009-url] | [Golang][0009-golang] | 38.9% |:purple_heart: |:eyes: |
22+
| 10 | [Regular Expression Matching][0010-url] | [Golang][nil] | 24.4% |:purple_heart: | :eyes:|
23+
| 11 | [Container With Most Water][0011-url] | [Golang][nil] | 24.4% |:purple_heart: |:eyes: |
24+
| 12 | [Integer to Roman][0012-url] | [Golang][nil] | 24.4% |:purple_heart: |:eyes: |
25+
| 13 | [Roman to Integer][0013-url] | [Golang][nil] | 24.4% |:purple_heart: | :eyes:|
26+
| 14 | [Longest Common Prefix][0014-url] | [Golang][nil] | 24.4% |:purple_heart: | :eyes:|
27+
| 15 | [3Sum][0015-url] | [Golang][nil] | 24.4% |:purple_heart: |:eyes: |
28+
| 16 | [3Sum Closest][0016-url] | [Golang][nil] | 24.4% |:purple_heart: |:eyes: |
29+
| 17 | [Letter Combinations of a Phone Number][0017-url] | [Golang][nil] | 24.4% |:purple_heart: |:eyes: |
30+
| 18 | [4Sum][0018-url] | [Golang][nil] | 24.4% |:purple_heart: |:eyes: |
31+
| 19 | [Remove Nth Node From End of List][0018-url] | [Golang][nil] | 24.4% |:purple_heart: | :eyes:|
32+
| 20 | [Valid Parentheses ][0020-url] | [Golang][nil] | 24.4% |:trollface: | :eyes:|
2333

2434

2535

@@ -55,3 +65,33 @@ LeetCode of algorithms with golang solution(updating:smiley:).
5565

5666
[0010-url]: https://leetcode.com/problems/regular-expression-matching
5767
[0010-golang]: https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0001.Two-Sum
68+
69+
[0011-url]: https://leetcode.com/problems/container-with-most-water
70+
[0011-golang]: https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0001.Two-Sum
71+
72+
[0012-url]: https://leetcode.com/problems/integer-to-roman
73+
[0012-golang]: https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0001.Two-Sum
74+
75+
[0013-url]: https://leetcode.com/problems/roman-to-integer
76+
[0013-golang]: https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0001.Two-Sum
77+
78+
[0014-url]: https://leetcode.com/problems/longest-common-prefix
79+
[0014-golang]: https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0001.Two-Sum
80+
81+
[0015-url]: https://leetcode.com/problems/3sum
82+
[0015-golang]: https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0001.Two-Sum
83+
84+
[0016-url]: https://leetcode.com/problems/3sum-closest
85+
[0016-golang]: https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0001.Two-Sum
86+
87+
[0017-url]: https://leetcode.com/problems/letter-combinations-of-a-phone-number
88+
[0017-golang]: https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0001.Two-Sum
89+
90+
[0018-url]: https://leetcode.com/problems/4sum
91+
[0018-golang]: https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0001.Two-Sum
92+
93+
[0019-url]: https://leetcode.com/problems/remove-nth-node-from-end-of-list
94+
[0019-golang]: https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0001.Two-Sum
95+
96+
[0020-url]: https://leetcode.com/problems/valid-parentheses
97+
[0020-golang]: https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0001.Two-Sum

0 commit comments

Comments
 (0)