@@ -117,6 +117,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
117117
118118| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
119119|-|-|-|-|-|-
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
120121
121122#### Day 3 Two Pointers
122123
@@ -291,6 +292,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
291292
292293| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
293294|-|-|-|-|-|-
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
294296
295297### Binary Search II
296298
@@ -429,6 +431,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
429431
430432| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
431433|-|-|-|-|-|-
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
432435
433436#### Day 7
434437
@@ -671,6 +674,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
671674
672675| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
673676|-|-|-|-|-|-
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
674678
675679#### Day 19
676680
@@ -913,6 +917,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
913917
914918| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
915919|-|-|-|-|-|-
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
916921
917922#### Day 5 Greedy
918923
@@ -960,6 +965,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
960965
961966| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
962967|-|-|-|-|-|-
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
963969
964970#### Day 14 Sliding Window/Two Pointer
965971
@@ -978,6 +984,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
978984
979985| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
980986|-|-|-|-|-|-
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
981988
982989#### Day 17 Interval
983990
@@ -1026,6 +1033,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
10261033| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
10271034|-|-|-|-|-|-
10281035| 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
10291037
10301038#### Udemy Arrays
10311039
@@ -1073,6 +1081,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
10731081| 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
10741082| 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
10751083| 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
10761085| 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
10771086| 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
10781087| 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.
11021111| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
11031112|-|-|-|-|-|-
11041113| 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
11051115| 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
11061116| 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
11071117| 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.
11261136
11271137| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
11281138|-|-|-|-|-|-
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
11291140
11301141### Data Structure I
11311142
@@ -1276,6 +1287,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
12761287
12771288| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
12781289|-|-|-|-|-|-
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
12791291
12801292#### Day 12 Linked List
12811293
@@ -1293,6 +1305,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
12931305
12941306| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
12951307|-|-|-|-|-|-
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
12961309
12971310#### Day 15 Tree
12981311
@@ -1334,6 +1347,11 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
13341347
13351348| # | Title | Difficulty | Tag | Time, ms | Time, %
13361349|------|----------------|-------------|-------------|----------|---------
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
13371355| 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
13381356| 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
13391357| 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