@@ -11,7 +11,7 @@ https://kimi0230.github.io/LeetcodeGolang/
11
11
- [ leetcode Content] ( #leetcode-content )
12
12
- [ Data Structure] ( #data-structure )
13
13
- [ Array \& String] ( #array--string )
14
- - [ | 0412 | 0412 .Fizz Buzz | Go | Easy | O(n) | O(n) | Array, string |] ( #-0412 ---------------------------------------------------------------------0412fizz- buzz--------------------------------------------------- go---------------------easy-------- on-------------on ------array-string-------- - )
14
+ - [ | 1195 | 1195 .Fizz Buzz Multithreaded | Go | Medium | O(n) | | Array, string,Concurrency |] ( #-1195 -----------------------------------------1195fizz- buzz-multithreaded ------------------------------go--------------medium ------on-------------------array-stringconcurrency - )
15
15
- [ Matrix] ( #matrix )
16
16
- [ Linked List] ( #linked-list )
17
17
- [ HashSet \& HashMap] ( #hashset--hashmap )
@@ -58,22 +58,23 @@ https://kimi0230.github.io/LeetcodeGolang/
58
58
59
59
#### Array & String
60
60
61
- | No. | Title | Solution | Difficulty | Time | Space | Topic |
62
- | ----------------------------------------------------------------------------------------------------------------| :-----------------------------------------------------------------------------------------------------------------------------------:| :-------------------------------------------------------------------------------------------------------------------------:| ------------| ---------------| --------| -----------------------|
63
- | [ 0001] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0001.Two-Sum ) | [ Two Sum] ( https://leetcode.com/problems/two-sum/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0001.Two-Sum ) | Easy | O(n) | O(n) | Array |
64
- | [ 0003] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0003.Longest-Substring-Without-Repeating-Characters ) | [ Longest Substring Without Repeating Characters] ( https://leetcode.com/problems/longest-substring-without-repeating-characters/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0003.Longest-Substring-Without-Repeating-Characters ) | Medium | O(n) | O(1) | Array, Sliding Window |
65
- | [ 0015] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0015.3Sum ) | [ 3 Sum] ( https://leetcode.com/problems/3sum/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0015.3Sum ) | Medium | O(n^2) | O(n) | Array |
66
- | [ 0027] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0027.Remove-Element ) | [ Remove Element] ( https://leetcode.com/problems/remove-element/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0027.Remove-Element ) | Easy | O(n) | O(1) | Array |
67
- | [ 0035] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0035.Search-Insert-Position ) | [ Search Insert Position] ( https://leetcode.com/problems/search-insert-position/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0035.Search-Insert-Position ) | Easy | O(n), O(logn) | O(1) | Array |
68
- | [ 0049] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0049.Group-Anagrams ) | [ Search Insert Position] ( https://leetcode.com/problems/group-anagrams/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0049.Group-Anagrams ) | Medium | O(kn) | O(kn) | Array |
69
- | [ 0059] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0059.Spiral-Matrix-II ) | [ Spiral Matrix II] ( https://leetcode.com/problems/spiral-matrix-ii/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0059.Spiral-Matrix-II ) | Medium | O(n) | O(n^2) | Array |
70
- | [ 0088] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0088.Merge-Sorted-Array ) | [ Merge Sorted Array] ( https://leetcode.com/problems/merge-sorted-array/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0088.Merge-Sorted-Array ) | Easy | O(n) | O(1) | Array |
71
- | [ 0217] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0217.Contains-Duplicate ) | [ 0217.Contains Duplicate] ( https://leetcode.com/problems/contains-duplicate/description/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0217.Contains-Duplicate ) | Easy | O(n) | O(n) | Array |
72
- | [ 0242] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0242.Valid-Anagram ) | [ 0242.Valid Anagram] ( https://leetcode.com/problems/valid-anagram/description/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0242.Valid-Anagram ) | Easy | O(n) | O(n) | Array |
73
- | [ 0409] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0409.Longest-Palindrome ) | [ 409. Longest Palindrome] ( https://leetcode.com/problems/longest-palindrome/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0409.Longest-Palindrome ) | Easy | O(n) | O(1) | Array |
74
- | [ 0380] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0380.Insert-Delete-GetRandom-O1 ) | [ 0380.Insert Delete GetRandom O(1)] ( https://leetcode.com/problems/insert-delete-getrandom-o1/description/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0380.Insert-Delete-GetRandom-O1 ) | Medium | O(1) | O(n) | Array |
75
- | [ 0381] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0381.Insert-Delete-GetRandom-O1-Duplicates-allowed ) | [ 0381.Insert Delete GetRandom O(1) Duplicates allowed] ( https://leetcode.com/problems/insert-delete-getrandom-o1-duplicates-allowed ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0381.Insert-Delete-GetRandom-O1-Duplicates-allowed ) | Medium | O(1) | O(n) | Array |
76
- | [ 0412] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0412.Fizz-Buzz ) | [ 0412.Fizz Buzz] ( https://leetcode.com/problems/fizz-buzz/description/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0412.Fizz-Buzz ) | Easy | O(n) | O(n) | Array, string |
61
+ | No. | Title | Solution | Difficulty | Time | Space | Topic |
62
+ | ----------------------------------------------------------------------------------------------------------------| :-----------------------------------------------------------------------------------------------------------------------------------:| :-------------------------------------------------------------------------------------------------------------------------:| ------------| ---------------| --------| ---------------------------|
63
+ | [ 0001] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0001.Two-Sum ) | [ Two Sum] ( https://leetcode.com/problems/two-sum/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0001.Two-Sum ) | Easy | O(n) | O(n) | Array |
64
+ | [ 0003] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0003.Longest-Substring-Without-Repeating-Characters ) | [ Longest Substring Without Repeating Characters] ( https://leetcode.com/problems/longest-substring-without-repeating-characters/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0003.Longest-Substring-Without-Repeating-Characters ) | Medium | O(n) | O(1) | Array, Sliding Window |
65
+ | [ 0015] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0015.3Sum ) | [ 3 Sum] ( https://leetcode.com/problems/3sum/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0015.3Sum ) | Medium | O(n^2) | O(n) | Array |
66
+ | [ 0027] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0027.Remove-Element ) | [ Remove Element] ( https://leetcode.com/problems/remove-element/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0027.Remove-Element ) | Easy | O(n) | O(1) | Array |
67
+ | [ 0035] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0035.Search-Insert-Position ) | [ Search Insert Position] ( https://leetcode.com/problems/search-insert-position/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0035.Search-Insert-Position ) | Easy | O(n), O(logn) | O(1) | Array |
68
+ | [ 0049] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0049.Group-Anagrams ) | [ Search Insert Position] ( https://leetcode.com/problems/group-anagrams/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0049.Group-Anagrams ) | Medium | O(kn) | O(kn) | Array |
69
+ | [ 0059] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0059.Spiral-Matrix-II ) | [ Spiral Matrix II] ( https://leetcode.com/problems/spiral-matrix-ii/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0059.Spiral-Matrix-II ) | Medium | O(n) | O(n^2) | Array |
70
+ | [ 0088] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0088.Merge-Sorted-Array ) | [ Merge Sorted Array] ( https://leetcode.com/problems/merge-sorted-array/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0088.Merge-Sorted-Array ) | Easy | O(n) | O(1) | Array |
71
+ | [ 0217] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0217.Contains-Duplicate ) | [ 0217.Contains Duplicate] ( https://leetcode.com/problems/contains-duplicate/description/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0217.Contains-Duplicate ) | Easy | O(n) | O(n) | Array |
72
+ | [ 0242] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0242.Valid-Anagram ) | [ 0242.Valid Anagram] ( https://leetcode.com/problems/valid-anagram/description/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0242.Valid-Anagram ) | Easy | O(n) | O(n) | Array |
73
+ | [ 0409] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0409.Longest-Palindrome ) | [ 409. Longest Palindrome] ( https://leetcode.com/problems/longest-palindrome/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0409.Longest-Palindrome ) | Easy | O(n) | O(1) | Array |
74
+ | [ 0380] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0380.Insert-Delete-GetRandom-O1 ) | [ 0380.Insert Delete GetRandom O(1)] ( https://leetcode.com/problems/insert-delete-getrandom-o1/description/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0380.Insert-Delete-GetRandom-O1 ) | Medium | O(1) | O(n) | Array |
75
+ | [ 0381] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0381.Insert-Delete-GetRandom-O1-Duplicates-allowed ) | [ 0381.Insert Delete GetRandom O(1) Duplicates allowed] ( https://leetcode.com/problems/insert-delete-getrandom-o1-duplicates-allowed ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0381.Insert-Delete-GetRandom-O1-Duplicates-allowed ) | Medium | O(1) | O(n) | Array |
76
+ | [ 0412] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/0412.Fizz-Buzz ) | [ 0412.Fizz Buzz] ( https://leetcode.com/problems/fizz-buzz/description/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/0412.Fizz-Buzz ) | Easy | O(n) | O(n) | Array, string |
77
+ | [ 1195] ( https://kimi0230.github.io/LeetcodeGolang/Leetcode/1195.Fizz-Buzz-Multithreaded ) | [ 1195.Fizz Buzz Multithreaded] ( https://leetcode.com/problems/fizz-buzz-multithreaded/description/ ) | [ Go] ( https://github.com/kimi0230/LeetcodeGolang/tree/master/Leetcode/1195.Fizz-Buzz-Multithreaded ) | Medium | O(n) | | Array, string,Concurrency |
77
78
---
78
79
79
80
#### Matrix
0 commit comments