@@ -117,6 +117,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
117
117
118
118
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
119
119
|-|-|-|-|-|-
120
+ | 0153 |[ Find Minimum in Rotated Sorted Array] ( src/main/js/g0101_0200/s0153_find_minimum_in_rotated_sorted_array/solution.js ) | Medium | Top_100_Liked_Questions, Array, Binary_Search, Big_O_Time_O(log_N)_ Space_O(log_N) | 0 | 100.00
120
121
121
122
#### Day 3 Two Pointers
122
123
@@ -291,6 +292,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
291
292
292
293
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
293
294
|-|-|-|-|-|-
295
+ | 0153 |[ Find Minimum in Rotated Sorted Array] ( src/main/js/g0101_0200/s0153_find_minimum_in_rotated_sorted_array/solution.js ) | Medium | Top_100_Liked_Questions, Array, Binary_Search, Big_O_Time_O(log_N)_ Space_O(log_N) | 0 | 100.00
294
296
295
297
### Binary Search II
296
298
@@ -429,6 +431,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
429
431
430
432
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
431
433
|-|-|-|-|-|-
434
+ | 0152 |[ Maximum Product Subarray] ( src/main/js/g0101_0200/s0152_maximum_product_subarray/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Big_O_Time_O(N)_ Space_O(1) | 0 | 100.00
432
435
433
436
#### Day 7
434
437
@@ -671,6 +674,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
671
674
672
675
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
673
676
|-|-|-|-|-|-
677
+ | 0155 |[ Min Stack] ( src/main/js/g0101_0200/s0155_min_stack/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Stack, Design, Big_O_Time_O(1)_ Space_O(N) | 6 | 99.32
674
678
675
679
#### Day 19
676
680
@@ -913,6 +917,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
913
917
914
918
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
915
919
|-|-|-|-|-|-
920
+ | 0148 |[ Sort List] ( src/main/js/g0101_0200/s0148_sort_list/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Sorting, Two_Pointers, Linked_List, Divide_and_Conquer, Merge_Sort, Big_O_Time_O(log(N))_ Space_O(log(N)) | 17 | 93.53
916
921
917
922
#### Day 5 Greedy
918
923
@@ -960,6 +965,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
960
965
961
966
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
962
967
|-|-|-|-|-|-
968
+ | 0152 |[ Maximum Product Subarray] ( src/main/js/g0101_0200/s0152_maximum_product_subarray/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Big_O_Time_O(N)_ Space_O(1) | 0 | 100.00
963
969
964
970
#### Day 14 Sliding Window/Two Pointer
965
971
@@ -978,6 +984,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
978
984
979
985
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
980
986
|-|-|-|-|-|-
987
+ | 0155 |[ Min Stack] ( src/main/js/g0101_0200/s0155_min_stack/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Stack, Design, Big_O_Time_O(1)_ Space_O(N) | 6 | 99.32
981
988
982
989
#### Day 17 Interval
983
990
@@ -1026,6 +1033,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1026
1033
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1027
1034
|-|-|-|-|-|-
1028
1035
| 0033 |[ Search in Rotated Sorted Array] ( src/main/js/g0001_0100/s0033_search_in_rotated_sorted_array/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Binary_Search, Big_O_Time_O(log_n)_ Space_O(1) | 0 | 100.00
1036
+ | 0153 |[ Find Minimum in Rotated Sorted Array] ( src/main/js/g0101_0200/s0153_find_minimum_in_rotated_sorted_array/solution.js ) | Medium | Top_100_Liked_Questions, Array, Binary_Search, Big_O_Time_O(log_N)_ Space_O(log_N) | 0 | 100.00
1029
1037
1030
1038
#### Udemy Arrays
1031
1039
@@ -1073,6 +1081,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1073
1081
| 0142 |[ Linked List Cycle II] ( src/main/js/g0101_0200/s0142_linked_list_cycle_ii/solution.js ) | Medium | Top_100_Liked_Questions, Hash_Table, Two_Pointers, Linked_List, Big_O_Time_O(N)_ Space_O(1) | 58 | 92.76
1074
1082
| 0141 |[ Linked List Cycle] ( src/main/js/g0101_0200/s0141_linked_list_cycle/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Hash_Table, Two_Pointers, Linked_List, Big_O_Time_O(N)_ Space_O(1) | 49 | 99.06
1075
1083
| 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
1084
+ | 0160 |[ Intersection of Two Linked Lists] ( src/main/js/g0101_0200/s0160_intersection_of_two_linked_lists/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Hash_Table, Two_Pointers, Linked_List, Big_O_Time_O(M+N)_ Space_O(1) | 68 | 93.67
1076
1085
| 0138 |[ Copy List with Random Pointer] ( src/main/js/g0101_0200/s0138_copy_list_with_random_pointer/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Hash_Table, Linked_List, Big_O_Time_O(N)_ Space_O(N) | 43 | 97.07
1077
1086
| 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
1078
1087
| 0146 |[ LRU Cache] ( src/main/js/g0101_0200/s0146_lru_cache/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Hash_Table, Design, Linked_List, Doubly_Linked_List, Big_O_Time_O(1)_ Space_O(capacity) | 91 | 96.82
@@ -1102,6 +1111,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1102
1111
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1103
1112
|-|-|-|-|-|-
1104
1113
| 0139 |[ Word Break] ( src/main/js/g0101_0200/s0139_word_break/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Dynamic_Programming, Trie, Memoization, Big_O_Time_O(M+max\* N)_ Space_O(M+N+max) | 0 | 100.00
1114
+ | 0152 |[ Maximum Product Subarray] ( src/main/js/g0101_0200/s0152_maximum_product_subarray/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Big_O_Time_O(N)_ Space_O(1) | 0 | 100.00
1105
1115
| 0070 |[ Climbing Stairs] ( src/main/js/g0001_0100/s0070_climbing_stairs/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Dynamic_Programming, Math, Memoization, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
1106
1116
| 0064 |[ Minimum Path Sum] ( src/main/js/g0001_0100/s0064_minimum_path_sum/solution.js ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Matrix, Big_O_Time_O(m\* n)_ Space_O(m\* n) | 3 | 83.07
1107
1117
| 0072 |[ Edit Distance] ( src/main/js/g0001_0100/s0072_edit_distance/solution.js ) | Medium | Top_100_Liked_Questions, String, Dynamic_Programming, Big_O_Time_O(n^2)_ Space_O(n2) | 5 | 99.01
@@ -1126,6 +1136,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1126
1136
1127
1137
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1128
1138
|-|-|-|-|-|-
1139
+ | 0155 |[ Min Stack] ( src/main/js/g0101_0200/s0155_min_stack/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Stack, Design, Big_O_Time_O(1)_ Space_O(N) | 6 | 99.32
1129
1140
1130
1141
### Data Structure I
1131
1142
@@ -1276,6 +1287,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1276
1287
1277
1288
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1278
1289
|-|-|-|-|-|-
1290
+ | 0160 |[ Intersection of Two Linked Lists] ( src/main/js/g0101_0200/s0160_intersection_of_two_linked_lists/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Hash_Table, Two_Pointers, Linked_List, Big_O_Time_O(M+N)_ Space_O(1) | 68 | 93.67
1279
1291
1280
1292
#### Day 12 Linked List
1281
1293
@@ -1293,6 +1305,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1293
1305
1294
1306
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1295
1307
|-|-|-|-|-|-
1308
+ | 0155 |[ Min Stack] ( src/main/js/g0101_0200/s0155_min_stack/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Stack, Design, Big_O_Time_O(1)_ Space_O(N) | 6 | 99.32
1296
1309
1297
1310
#### Day 15 Tree
1298
1311
@@ -1334,6 +1347,11 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1334
1347
1335
1348
| # | Title | Difficulty | Tag | Time, ms | Time, %
1336
1349
|------|----------------|-------------|-------------|----------|---------
1350
+ | 0160 |[ Intersection of Two Linked Lists] ( src/main/js/g0101_0200/s0160_intersection_of_two_linked_lists/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Hash_Table, Two_Pointers, Linked_List, Data_Structure_II_Day_11_Linked_List, Udemy_Linked_List, Big_O_Time_O(M+N)_ Space_O(1) | 68 | 93.67
1351
+ | 0155 |[ Min Stack] ( src/main/js/g0101_0200/s0155_min_stack/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Stack, Design, Data_Structure_II_Day_14_Stack_Queue, Programming_Skills_II_Day_18, Level_2_Day_16_Design, Udemy_Design, Big_O_Time_O(1)_ Space_O(N) | 6 | 99.32
1352
+ | 0153 |[ Find Minimum in Rotated Sorted Array] ( src/main/js/g0101_0200/s0153_find_minimum_in_rotated_sorted_array/solution.js ) | Medium | Top_100_Liked_Questions, Array, Binary_Search, Algorithm_II_Day_2_Binary_Search, Binary_Search_I_Day_12, Udemy_Binary_Search, Big_O_Time_O(log_N)_ Space_O(log_N) | 0 | 100.00
1353
+ | 0152 |[ Maximum Product Subarray] ( src/main/js/g0101_0200/s0152_maximum_product_subarray/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Dynamic_Programming_I_Day_6, Level_2_Day_13_Dynamic_Programming, Udemy_Dynamic_Programming, Big_O_Time_O(N)_ Space_O(1) | 0 | 100.00
1354
+ | 0148 |[ Sort List] ( src/main/js/g0101_0200/s0148_sort_list/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Sorting, Two_Pointers, Linked_List, Divide_and_Conquer, Merge_Sort, Level_2_Day_4_Linked_List, Big_O_Time_O(log(N))_ Space_O(log(N)) | 17 | 93.53
1337
1355
| 0146 |[ LRU Cache] ( src/main/js/g0101_0200/s0146_lru_cache/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Hash_Table, Design, Linked_List, Doubly_Linked_List, Udemy_Linked_List, Big_O_Time_O(1)_ Space_O(capacity) | 91 | 96.82
1338
1356
| 0142 |[ Linked List Cycle II] ( src/main/js/g0101_0200/s0142_linked_list_cycle_ii/solution.js ) | Medium | Top_100_Liked_Questions, Hash_Table, Two_Pointers, Linked_List, Data_Structure_II_Day_10_Linked_List, Level_1_Day_4_Linked_List, Udemy_Linked_List, Big_O_Time_O(N)_ Space_O(1) | 58 | 92.76
1339
1357
| 0141 |[ Linked List Cycle] ( src/main/js/g0101_0200/s0141_linked_list_cycle/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Hash_Table, Two_Pointers, Linked_List, Data_Structure_I_Day_7_Linked_List, Udemy_Linked_List, Big_O_Time_O(N)_ Space_O(1) | 49 | 99.06
0 commit comments