@@ -10,13 +10,17 @@ LeetCode of algorithms with golang solution(updating).
1010
1111## List
1212
13- | # | Title | Tag |
14- | :--- | :--------------------------------------- | :--------------------------------------- |
15- | 1 | [ Two Sum] [ 0001 ] | Array, Hash Table |
16- | 7 | [ Reverse Integer] [ 0007 ] | Math |
17- | 9 | [ Palindrome Number] [ 0009 ] | Math |
18- | 13 | [ Roman to Integer] [ 0013 ] | Math, String |
19- | 14 | [ Longest Common Prefix] [ 0014 ] | String |
13+ | # | Title | Tag | Difficulty |
14+ | :--- | :--------------------------------------- | :--------------------------------------- | :----------- |
15+ | 1 | [ Two Sum] [ 0001 ] | Array, Hash Table | Easy |
16+ | 7 | [ Reverse Integer] [ 0007 ] | Math | Easy |
17+ | 9 | [ Palindrome Number] [ 0009 ] | Math | Easy |
18+ | 13 | [ Roman to Integer] [ 0013 ] | Math, String | Easy |
19+ | 14 | [ Longest Common Prefix] [ 0014 ] | Stack, String | Easy |
20+ | 20 | [ Valid Parentheses] [ 0020 ] | Linked List | Easy |
21+ | 21 | [ Merge Two Sorted Lists] [ 0021 ] | Linked List | Easy |
22+ | 26 | [ Remove Duplicates from Sorted Array] [ 0026 ] | Array, Two Pointers | Easy |
23+ | 27 | [ Remove Element] [ 0027 ] | Array, Two Pointers | Easy |
2024
2125
2226
@@ -29,4 +33,8 @@ LeetCode of algorithms with golang solution(updating).
2933[ 0009 ] : https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0009.Palindrome-Number
3034[ 0013 ] : https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0013.Roman-to-Integer
3135[ 0014 ] : https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0014.Longest-Common-Prefix
36+ [ 0020 ] : https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0020.Valid-Parentheses
37+ [ 0021 ] : https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0021.Merge-Two-Sorted-Lists
38+ [ 0026 ] : https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0026.Remove-Duplicates-from-Sorted-Array
39+ [ 0027 ] : https://github.com/kylesliu/awesome-golang-leetcode/tree/master/src/0027.Remove-Element
3240
0 commit comments