@@ -77,6 +77,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
77
77
78
78
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
79
79
|-|-|-|-|-|-
80
+ | 0021 |[ Merge Two Sorted Lists] ( src/main/js/g0001_0100/s0021_merge_two_sorted_lists/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(m+n)_ Space_O(m+n) | 0 | 100.00
80
81
81
82
#### Day 11 Recursion Backtracking
82
83
@@ -157,6 +158,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
157
158
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
158
159
|-|-|-|-|-|-
159
160
| 0017 |[ Letter Combinations of a Phone Number] ( src/main/js/g0001_0100/s0017_letter_combinations_of_a_phone_number/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Backtracking, Big_O_Time_O(4^n)_ Space_O(n) | 0 | 100.00
161
+ | 0022 |[ Generate Parentheses] ( src/main/js/g0001_0100/s0022_generate_parentheses/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Dynamic_Programming, Backtracking, Big_O_Time_O(2^n)_ Space_O(n) | 0 | 100.00
160
162
161
163
#### Day 12 Dynamic Programming
162
164
@@ -786,6 +788,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
786
788
787
789
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
788
790
|-|-|-|-|-|-
791
+ | 0021 |[ Merge Two Sorted Lists] ( src/main/js/g0001_0100/s0021_merge_two_sorted_lists/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(m+n)_ Space_O(m+n) | 0 | 100.00
789
792
790
793
#### Day 4 Linked List
791
794
@@ -1005,6 +1008,9 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1005
1008
1006
1009
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1007
1010
|-|-|-|-|-|-
1011
+ | 0024 |[ Swap Nodes in Pairs] ( src/main/js/g0001_0100/s0024_swap_nodes_in_pairs/solution.js ) | Medium | Top_100_Liked_Questions, Linked_List, Recursion, Big_O_Time_O(n)_ Space_O(1) | 1 | 100.00
1012
+ | 0021 |[ Merge Two Sorted Lists] ( src/main/js/g0001_0100/s0021_merge_two_sorted_lists/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(m+n)_ Space_O(m+n) | 0 | 100.00
1013
+ | 0025 |[ Reverse Nodes in k-Group] ( src/main/js/g0001_0100/s0025_reverse_nodes_in_k_group/solution.js ) | Hard | Top_100_Liked_Questions, Linked_List, Recursion, Big_O_Time_O(n)_ Space_O(k) | 0 | 100.00
1008
1014
1009
1015
#### Udemy Tree Stack Queue
1010
1016
@@ -1031,6 +1037,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1031
1037
1032
1038
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1033
1039
|-|-|-|-|-|-
1040
+ | 0022 |[ Generate Parentheses] ( src/main/js/g0001_0100/s0022_generate_parentheses/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Dynamic_Programming, Backtracking, Big_O_Time_O(2^n)_ Space_O(n) | 0 | 100.00
1034
1041
| 0017 |[ Letter Combinations of a Phone Number] ( src/main/js/g0001_0100/s0017_letter_combinations_of_a_phone_number/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Backtracking, Big_O_Time_O(4^n)_ Space_O(n) | 0 | 100.00
1035
1042
1036
1043
#### Udemy Bit Manipulation
@@ -1080,6 +1087,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1080
1087
1081
1088
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1082
1089
|-|-|-|-|-|-
1090
+ | 0021 |[ Merge Two Sorted Lists] ( src/main/js/g0001_0100/s0021_merge_two_sorted_lists/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(m+n)_ Space_O(m+n) | 0 | 100.00
1083
1091
1084
1092
#### Day 8 Linked List
1085
1093
@@ -1181,11 +1189,13 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1181
1189
1182
1190
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1183
1191
|-|-|-|-|-|-
1192
+ | 0024 |[ Swap Nodes in Pairs] ( src/main/js/g0001_0100/s0024_swap_nodes_in_pairs/solution.js ) | Medium | Top_100_Liked_Questions, Linked_List, Recursion, Big_O_Time_O(n)_ Space_O(1) | 1 | 100.00
1184
1193
1185
1194
#### Day 13 Linked List
1186
1195
1187
1196
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1188
1197
|-|-|-|-|-|-
1198
+ | 0025 |[ Reverse Nodes in k-Group] ( src/main/js/g0001_0100/s0025_reverse_nodes_in_k_group/solution.js ) | Hard | Top_100_Liked_Questions, Linked_List, Recursion, Big_O_Time_O(n)_ Space_O(k) | 0 | 100.00
1189
1199
1190
1200
#### Day 14 Stack Queue
1191
1201
@@ -1231,6 +1241,11 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1231
1241
1232
1242
| # | Title | Difficulty | Tag | Time, ms | Time, %
1233
1243
|------|----------------|-------------|-------------|----------|---------
1244
+ | 0025 |[ Reverse Nodes in k-Group] ( src/main/js/g0001_0100/s0025_reverse_nodes_in_k_group/solution.js ) | Hard | Top_100_Liked_Questions, Linked_List, Recursion, Data_Structure_II_Day_13_Linked_List, Udemy_Linked_List, Big_O_Time_O(n)_ Space_O(k) | 0 | 100.00
1245
+ | 0024 |[ Swap Nodes in Pairs] ( src/main/js/g0001_0100/s0024_swap_nodes_in_pairs/solution.js ) | Medium | Top_100_Liked_Questions, Linked_List, Recursion, Data_Structure_II_Day_12_Linked_List, Udemy_Linked_List, Big_O_Time_O(n)_ Space_O(1) | 1 | 100.00
1246
+ | 0023 |[ Merge k Sorted Lists] ( src/main/js/g0001_0100/s0023_merge_k_sorted_lists/solution.js ) | Hard | Top_100_Liked_Questions, Top_Interview_Questions, Heap_Priority_Queue, Linked_List, Divide_and_Conquer, Merge_Sort, Big_O_Time_O(k\* n\* log(k))_ Space_O(log(k)) | 3 | 99.39
1247
+ | 0022 |[ Generate Parentheses] ( src/main/js/g0001_0100/s0022_generate_parentheses/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Dynamic_Programming, Backtracking, Algorithm_II_Day_11_Recursion_Backtracking, Udemy_Backtracking/Recursion, Big_O_Time_O(2^n)_ Space_O(n) | 0 | 100.00
1248
+ | 0021 |[ Merge Two Sorted Lists] ( src/main/js/g0001_0100/s0021_merge_two_sorted_lists/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Data_Structure_I_Day_7_Linked_List, Algorithm_I_Day_10_Recursion_Backtracking, Level_1_Day_3_Linked_List, Udemy_Linked_List, Big_O_Time_O(m+n)_ Space_O(m+n) | 0 | 100.00
1234
1249
| 0020 |[ Valid Parentheses] ( src/main/js/g0001_0100/s0020_valid_parentheses/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, String, Stack, Data_Structure_I_Day_9_Stack_Queue, Udemy_Strings, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
1235
1250
| 0019 |[ Remove Nth Node From End of List] ( src/main/js/g0001_0100/s0019_remove_nth_node_from_end_of_list/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Two_Pointers, Linked_List, Algorithm_I_Day_5_Two_Pointers, Level_2_Day_3_Linked_List, Big_O_Time_O(L)_ Space_O(L) | 0 | 100.00
1236
1251
| 0017 |[ Letter Combinations of a Phone Number] ( src/main/js/g0001_0100/s0017_letter_combinations_of_a_phone_number/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Backtracking, Algorithm_II_Day_11_Recursion_Backtracking, Udemy_Backtracking/Recursion, Big_O_Time_O(4^n)_ Space_O(n) | 0 | 100.00
0 commit comments