@@ -101,6 +101,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
101
101
102
102
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
103
103
|-|-|-|-|-|-
104
+ | 0136 |[ Single Number] ( src/main/js/g0101_0200/s0136_single_number/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Bit_Manipulation, Big_O_Time_O(N)_ Space_O(1) | 0 | 100.00
104
105
105
106
### Algorithm II
106
107
@@ -192,6 +193,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
192
193
193
194
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
194
195
|-|-|-|-|-|-
196
+ | 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
195
197
196
198
#### Day 16 Dynamic Programming
197
199
@@ -432,6 +434,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
432
434
433
435
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
434
436
|-|-|-|-|-|-
437
+ | 0121 |[ Best Time to Buy and Sell Stock] ( src/main/js/g0101_0200/s0121_best_time_to_buy_and_sell_stock/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Big_O_Time_O(N)_ Space_O(1) | 1 | 97.34
435
438
436
439
#### Day 8
437
440
@@ -442,6 +445,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
442
445
443
446
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
444
447
|-|-|-|-|-|-
448
+ | 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
445
449
| 0042 |[ Trapping Rain Water] ( src/main/js/g0001_0100/s0042_trapping_rain_water/solution.js ) | Hard | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Two_Pointers, Stack, Monotonic_Stack, Big_O_Time_O(n)_ Space_O(1) | 0 | 100.00
446
450
447
451
#### Day 10
@@ -645,6 +649,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
645
649
646
650
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
647
651
|-|-|-|-|-|-
652
+ | 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
648
653
649
654
#### Day 15
650
655
@@ -823,11 +828,13 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
823
828
824
829
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
825
830
|-|-|-|-|-|-
831
+ | 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
826
832
827
833
#### Day 5 Greedy
828
834
829
835
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
830
836
|-|-|-|-|-|-
837
+ | 0121 |[ Best Time to Buy and Sell Stock] ( src/main/js/g0101_0200/s0121_best_time_to_buy_and_sell_stock/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Big_O_Time_O(N)_ Space_O(1) | 1 | 97.34
831
838
832
839
#### Day 6 Tree
833
840
@@ -1001,6 +1008,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1001
1008
1002
1009
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1003
1010
|-|-|-|-|-|-
1011
+ | 0136 |[ Single Number] ( src/main/js/g0101_0200/s0136_single_number/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Bit_Manipulation, Big_O_Time_O(N)_ Space_O(1) | 0 | 100.00
1004
1012
| 0007 |[ Reverse Integer] ( src/main/js/g0001_0100/s0007_reverse_integer/solution.js ) | Medium | Top_Interview_Questions, Math | 67 | 85.38
1005
1013
| 0009 |[ Palindrome Number] ( src/main/js/g0001_0100/s0009_palindrome_number/solution.js ) | Easy | Math | 4 | 97.14
1006
1014
@@ -1023,6 +1031,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1023
1031
1024
1032
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1025
1033
|-|-|-|-|-|-
1034
+ | 0121 |[ Best Time to Buy and Sell Stock] ( src/main/js/g0101_0200/s0121_best_time_to_buy_and_sell_stock/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Big_O_Time_O(N)_ Space_O(1) | 1 | 97.34
1026
1035
| 0001 |[ Two Sum] ( src/main/js/g0001_0100/s0001_two_sum/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Big_O_Time_O(n)_ Space_O(n), AI_can_be_used_to_solve_the_task | 1 | 89.15
1027
1036
| 0055 |[ Jump Game] ( src/main/js/g0001_0100/s0055_jump_game/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Greedy, Big_O_Time_O(n)_ Space_O(1) | 0 | 100.00
1028
1037
| 0075 |[ Sort Colors] ( src/main/js/g0001_0100/s0075_sort_colors/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Sorting, Two_Pointers, Big_O_Time_O(n)_ Space_O(1) | 0 | 100.00
@@ -1061,8 +1070,12 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1061
1070
|-|-|-|-|-|-
1062
1071
| 0114 |[ Flatten Binary Tree to Linked List] ( src/main/js/g0101_0200/s0114_flatten_binary_tree_to_linked_list/solution.js ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Stack, Linked_List, Big_O_Time_O(N)_ Space_O(N) | 0 | 100.00
1063
1072
| 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
1073
+ | 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
+ | 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
1064
1075
| 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
1076
+ | 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
1065
1077
| 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
+ | 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
1066
1079
1067
1080
#### Udemy Tree Stack Queue
1068
1081
@@ -1071,6 +1084,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1071
1084
| 0094 |[ Binary Tree Inorder Traversal] ( src/main/js/g0001_0100/s0094_binary_tree_inorder_traversal/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Stack, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
1072
1085
| 0102 |[ Binary Tree Level Order Traversal] ( src/main/js/g0101_0200/s0102_binary_tree_level_order_traversal/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Breadth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_ Space_O(N) | 1 | 87.97
1073
1086
| 0104 |[ Maximum Depth of Binary Tree] ( src/main/js/g0101_0200/s0104_maximum_depth_of_binary_tree/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_ Space_O(H) | 0 | 100.00
1087
+ | 0124 |[ Binary Tree Maximum Path Sum] ( src/main/js/g0101_0200/s0124_binary_tree_maximum_path_sum/solution.js ) | Hard | Top_100_Liked_Questions, Top_Interview_Questions, Dynamic_Programming, Depth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_ Space_O(N) | 1 | 98.34
1074
1088
| 0098 |[ Validate Binary Search Tree] ( src/main/js/g0001_0100/s0098_validate_binary_search_tree/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Big_O_Time_O(N)_ Space_O(log(N)) | 0 | 100.00
1075
1089
1076
1090
#### Udemy Trie and Heap
@@ -1087,6 +1101,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1087
1101
1088
1102
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1089
1103
|-|-|-|-|-|-
1104
+ | 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
1090
1105
| 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
1091
1106
| 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
1092
1107
| 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
@@ -1130,6 +1145,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1130
1145
1131
1146
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1132
1147
|-|-|-|-|-|-
1148
+ | 0121 |[ Best Time to Buy and Sell Stock] ( src/main/js/g0101_0200/s0121_best_time_to_buy_and_sell_stock/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Big_O_Time_O(N)_ Space_O(1) | 1 | 97.34
1133
1149
1134
1150
#### Day 4 Array
1135
1151
@@ -1151,6 +1167,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1151
1167
1152
1168
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1153
1169
|-|-|-|-|-|-
1170
+ | 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
1154
1171
| 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
1155
1172
1156
1173
#### Day 8 Linked List
@@ -1200,6 +1217,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1200
1217
1201
1218
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1202
1219
|-|-|-|-|-|-
1220
+ | 0136 |[ Single Number] ( src/main/js/g0101_0200/s0136_single_number/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Bit_Manipulation, Big_O_Time_O(N)_ Space_O(1) | 0 | 100.00
1203
1221
| 0015 |[ 3Sum] ( src/main/js/g0001_0100/s0015_3sum/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Sorting, Two_Pointers, Big_O_Time_O(n\* log(n))_ Space_O(n^2) | 31 | 91.92
1204
1222
1205
1223
#### Day 2 Array
@@ -1252,6 +1270,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1252
1270
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1253
1271
|-|-|-|-|-|-
1254
1272
| 0002 |[ Add Two Numbers] ( src/main/js/g0001_0100/s0002_add_two_numbers/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Math, Linked_List, Recursion, Big_O_Time_O(max(N,M))_ Space_O(max(N,M)), AI_can_be_used_to_solve_the_task | 3 | 81.61
1273
+ | 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
1255
1274
1256
1275
#### Day 11 Linked List
1257
1276
@@ -1315,6 +1334,16 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1315
1334
1316
1335
| # | Title | Difficulty | Tag | Time, ms | Time, %
1317
1336
|------|----------------|-------------|-------------|----------|---------
1337
+ | 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
+ | 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
+ | 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
1340
+ | 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, Algorithm_II_Day_15_Dynamic_Programming, Dynamic_Programming_I_Day_9, Udemy_Dynamic_Programming, Big_O_Time_O(M+max\* N)_ Space_O(M+N+max) | 0 | 100.00
1341
+ | 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, Programming_Skills_II_Day_14, Udemy_Linked_List, Big_O_Time_O(N)_ Space_O(N) | 43 | 97.07
1342
+ | 0136 |[ Single Number] ( src/main/js/g0101_0200/s0136_single_number/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Bit_Manipulation, Data_Structure_II_Day_1_Array, Algorithm_I_Day_14_Bit_Manipulation, Udemy_Integers, Big_O_Time_O(N)_ Space_O(1) | 0 | 100.00
1343
+ | 0131 |[ Palindrome Partitioning] ( src/main/js/g0101_0200/s0131_palindrome_partitioning/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Dynamic_Programming, Backtracking, Big_O_Time_O(N\* 2^N)_ Space_O(2^N\* N) | 21 | 89.90
1344
+ | 0128 |[ Longest Consecutive Sequence] ( src/main/js/g0101_0200/s0128_longest_consecutive_sequence/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Union_Find, Big_O_Time_O(N_log_N)_ Space_O(1) | 31 | 93.87
1345
+ | 0124 |[ Binary Tree Maximum Path Sum] ( src/main/js/g0101_0200/s0124_binary_tree_maximum_path_sum/solution.js ) | Hard | Top_100_Liked_Questions, Top_Interview_Questions, Dynamic_Programming, Depth_First_Search, Tree, Binary_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(N)_ Space_O(N) | 1 | 98.34
1346
+ | 0121 |[ Best Time to Buy and Sell Stock] ( src/main/js/g0101_0200/s0121_best_time_to_buy_and_sell_stock/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Data_Structure_I_Day_3_Array, Dynamic_Programming_I_Day_7, Level_1_Day_5_Greedy, Udemy_Arrays, Big_O_Time_O(N)_ Space_O(1) | 1 | 97.34
1318
1347
| 0114 |[ Flatten Binary Tree to Linked List] ( src/main/js/g0101_0200/s0114_flatten_binary_tree_to_linked_list/solution.js ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Stack, Linked_List, Udemy_Linked_List, Big_O_Time_O(N)_ Space_O(N) | 0 | 100.00
1319
1348
| 0105 |[ Construct Binary Tree from Preorder and Inorder Traversal] ( src/main/js/g0101_0200/s0105_construct_binary_tree_from_preorder_and_inorder_traversal/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Tree, Binary_Tree, Divide_and_Conquer, Data_Structure_II_Day_15_Tree, Big_O_Time_O(N)_ Space_O(N) | 1 | 98.60
1320
1349
| 0104 |[ Maximum Depth of Binary Tree] ( src/main/js/g0101_0200/s0104_maximum_depth_of_binary_tree/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, Data_Structure_I_Day_11_Tree, Programming_Skills_I_Day_10_Linked_List_and_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(N)_ Space_O(H) | 0 | 100.00
0 commit comments