@@ -42,6 +42,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
42
42
43
43
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
44
44
|-|-|-|-|-|-
45
+ | 0283 |[ Move Zeroes] ( src/main/js/g0201_0300/s0283_move_zeroes/solution.js ) | Easy | Top_100_Liked_Questions, Array, Two_Pointers, Big_O_Time_O(n)_ Space_O(1) | 0 | 100.00
45
46
46
47
#### Day 4 Two Pointers
47
48
@@ -204,6 +205,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
204
205
205
206
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
206
207
|-|-|-|-|-|-
208
+ | 0300 |[ Longest Increasing Subsequence] ( src/main/js/g0201_0300/s0300_longest_increasing_subsequence/solution.js ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Binary_Search, Big_O_Time_O(n\* log_n)_ Space_O(n) | 4 | 93.09
207
209
208
210
#### Day 17 Dynamic Programming
209
211
@@ -314,6 +316,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
314
316
315
317
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
316
318
|-|-|-|-|-|-
319
+ | 0300 |[ Longest Increasing Subsequence] ( src/main/js/g0201_0300/s0300_longest_increasing_subsequence/solution.js ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Binary_Search, Big_O_Time_O(n\* log_n)_ Space_O(n) | 4 | 93.09
317
320
318
321
#### Day 4
319
322
@@ -324,6 +327,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
324
327
325
328
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
326
329
|-|-|-|-|-|-
330
+ | 0287 |[ Find the Duplicate Number] ( src/main/js/g0201_0300/s0287_find_the_duplicate_number/solution.js ) | Medium | Top_100_Liked_Questions, Array, Binary_Search, Two_Pointers, Bit_Manipulation, Big_O_Time_O(n)_ Space_O(n) | 1 | 99.54
327
331
328
332
#### Day 6
329
333
@@ -339,6 +343,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
339
343
340
344
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
341
345
|-|-|-|-|-|-
346
+ | 0240 |[ Search a 2D Matrix II] ( src/main/js/g0201_0300/s0240_search_a_2d_matrix_ii/solution.js ) | Medium | Top_100_Liked_Questions, Array, Binary_Search, Matrix, Divide_and_Conquer, Big_O_Time_O(n+m)_ Space_O(1) | 279 | 94.52
342
347
343
348
#### Day 9
344
349
@@ -505,6 +510,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
505
510
506
511
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
507
512
|-|-|-|-|-|-
513
+ | 0300 |[ Longest Increasing Subsequence] ( src/main/js/g0201_0300/s0300_longest_increasing_subsequence/solution.js ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Binary_Search, Big_O_Time_O(n\* log_n)_ Space_O(n) | 4 | 93.09
508
514
509
515
#### Day 19
510
516
@@ -553,6 +559,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
553
559
554
560
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
555
561
|-|-|-|-|-|-
562
+ | 0283 |[ Move Zeroes] ( src/main/js/g0201_0300/s0283_move_zeroes/solution.js ) | Easy | Top_100_Liked_Questions, Array, Two_Pointers, Big_O_Time_O(n)_ Space_O(1) | 0 | 100.00
556
563
557
564
#### Day 7 Array
558
565
@@ -921,6 +928,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
921
928
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
922
929
|-|-|-|-|-|-
923
930
| 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, Big_O_Time_O(L)_ Space_O(L) | 0 | 100.00
931
+ | 0234 |[ Palindrome Linked List] ( src/main/js/g0201_0300/s0234_palindrome_linked_list/solution.js ) | Easy | Top_100_Liked_Questions, Two_Pointers, Stack, Linked_List, Recursion, Big_O_Time_O(n)_ Space_O(1) | 3 | 93.71
924
932
925
933
#### Day 4 Linked List
926
934
@@ -955,6 +963,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
955
963
956
964
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
957
965
|-|-|-|-|-|-
966
+ | 0230 |[ Kth Smallest Element in a BST] ( src/main/js/g0201_0300/s0230_kth_smallest_element_in_a_bst/solution.js ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
958
967
959
968
#### Day 10 Graph/BFS/DFS
960
969
@@ -1052,11 +1061,14 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1052
1061
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1053
1062
|-|-|-|-|-|-
1054
1063
| 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
1064
+ | 0283 |[ Move Zeroes] ( src/main/js/g0201_0300/s0283_move_zeroes/solution.js ) | Easy | Top_100_Liked_Questions, Array, Two_Pointers, Big_O_Time_O(n)_ Space_O(1) | 0 | 100.00
1055
1065
| 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
1056
1066
| 0189 |[ Rotate Array] ( src/main/js/g0101_0200/s0189_rotate_array/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Math, Two_Pointers, Big_O_Time_O(n)_ Space_O(1) | 0 | 100.00
1057
1067
| 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
1058
1068
| 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
1069
+ | 0238 |[ Product of Array Except Self] ( src/main/js/g0201_0300/s0238_product_of_array_except_self/solution.js ) | Medium | Top_100_Liked_Questions, Array, Prefix_Sum, Big_O_Time_O(n^2)_ Space_O(n) | 3 | 93.60
1059
1070
| 0041 |[ First Missing Positive] ( src/main/js/g0001_0100/s0041_first_missing_positive/solution.js ) | Hard | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Big_O_Time_O(n)_ Space_O(n) | 1 | 98.86
1071
+ | 0239 |[ Sliding Window Maximum] ( src/main/js/g0201_0300/s0239_sliding_window_maximum/solution.js ) | Hard | Top_100_Liked_Questions, Array, Heap_Priority_Queue, Sliding_Window, Queue, Monotonic_Queue, Big_O_Time_O(n\* k)_ Space_O(n+k) | 28 | 98.27
1060
1072
1061
1073
#### Udemy Two Pointers
1062
1074
@@ -1097,6 +1109,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1097
1109
| 0206 |[ Reverse Linked List] ( src/main/js/g0201_0300/s0206_reverse_linked_list/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(N)_ Space_O(1) | 0 | 100.00
1098
1110
| 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
1099
1111
| 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
1112
+ | 0234 |[ Palindrome Linked List] ( src/main/js/g0201_0300/s0234_palindrome_linked_list/solution.js ) | Easy | Top_100_Liked_Questions, Two_Pointers, Stack, Linked_List, Recursion, Big_O_Time_O(n)_ Space_O(1) | 3 | 93.71
1100
1113
| 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
1101
1114
| 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
1102
1115
| 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
@@ -1111,6 +1124,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1111
1124
| 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
1112
1125
| 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
1113
1126
| 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
1127
+ | 0236 |[ Lowest Common Ancestor of a Binary Tree] ( src/main/js/g0201_0300/s0236_lowest_common_ancestor_of_a_binary_tree/solution.js ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Big_O_Time_O(n)_ Space_O(n) | 53 | 98.59
1114
1128
1115
1129
#### Udemy Trie and Heap
1116
1130
@@ -1133,6 +1147,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1133
1147
| 0198 |[ House Robber] ( src/main/js/g0101_0200/s0198_house_robber/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
1134
1148
| 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
1135
1149
| 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
1150
+ | 0300 |[ Longest Increasing Subsequence] ( src/main/js/g0201_0300/s0300_longest_increasing_subsequence/solution.js ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Binary_Search, Big_O_Time_O(n\* log_n)_ Space_O(n) | 4 | 93.09
1136
1151
| 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
1137
1152
| 0010 |[ Regular Expression Matching] ( src/main/js/g0001_0100/s0010_regular_expression_matching/solution.js ) | Hard | Top_Interview_Questions, String, Dynamic_Programming, Recursion, Big_O_Time_O(m\* n)_ Space_O(m\* n) | 4 | 95.52
1138
1153
@@ -1270,11 +1285,13 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1270
1285
1271
1286
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1272
1287
|-|-|-|-|-|-
1288
+ | 0240 |[ Search a 2D Matrix II] ( src/main/js/g0201_0300/s0240_search_a_2d_matrix_ii/solution.js ) | Medium | Top_100_Liked_Questions, Array, Binary_Search, Matrix, Divide_and_Conquer, Big_O_Time_O(n+m)_ Space_O(1) | 279 | 94.52
1273
1289
1274
1290
#### Day 5 Array
1275
1291
1276
1292
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1277
1293
|-|-|-|-|-|-
1294
+ | 0238 |[ Product of Array Except Self] ( src/main/js/g0201_0300/s0238_product_of_array_except_self/solution.js ) | Medium | Top_100_Liked_Questions, Array, Prefix_Sum, Big_O_Time_O(n^2)_ Space_O(n) | 3 | 93.60
1278
1295
1279
1296
#### Day 6 String
1280
1297
@@ -1344,11 +1361,13 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1344
1361
1345
1362
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1346
1363
|-|-|-|-|-|-
1364
+ | 0230 |[ Kth Smallest Element in a BST] ( src/main/js/g0201_0300/s0230_kth_smallest_element_in_a_bst/solution.js ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
1347
1365
1348
1366
#### Day 18 Tree
1349
1367
1350
1368
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1351
1369
|-|-|-|-|-|-
1370
+ | 0236 |[ Lowest Common Ancestor of a Binary Tree] ( src/main/js/g0201_0300/s0236_lowest_common_ancestor_of_a_binary_tree/solution.js ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Big_O_Time_O(n)_ Space_O(n) | 53 | 98.59
1352
1371
1353
1372
#### Day 19 Graph
1354
1373
@@ -1370,6 +1389,16 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1370
1389
1371
1390
| # | Title | Difficulty | Tag | Time, ms | Time, %
1372
1391
|------|----------------|-------------|-------------|----------|---------
1392
+ | 0300 |[ Longest Increasing Subsequence] ( src/main/js/g0201_0300/s0300_longest_increasing_subsequence/solution.js ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Binary_Search, Algorithm_II_Day_16_Dynamic_Programming, Binary_Search_II_Day_3, Dynamic_Programming_I_Day_18, Udemy_Dynamic_Programming, Big_O_Time_O(n\* log_n)_ Space_O(n) | 4 | 93.09
1393
+ | 0295 |[ Find Median from Data Stream] ( src/main/js/g0201_0300/s0295_find_median_from_data_stream/solution.js ) | Hard | Top_100_Liked_Questions, Sorting, Two_Pointers, Design, Heap_Priority_Queue, Data_Stream, Big_O_Time_O(n\* log_n)_ Space_O(n) | 97 | 98.11
1394
+ | 0287 |[ Find the Duplicate Number] ( src/main/js/g0201_0300/s0287_find_the_duplicate_number/solution.js ) | Medium | Top_100_Liked_Questions, Array, Binary_Search, Two_Pointers, Bit_Manipulation, Binary_Search_II_Day_5, Big_O_Time_O(n)_ Space_O(n) | 1 | 99.54
1395
+ | 0283 |[ Move Zeroes] ( src/main/js/g0201_0300/s0283_move_zeroes/solution.js ) | Easy | Top_100_Liked_Questions, Array, Two_Pointers, Algorithm_I_Day_3_Two_Pointers, Programming_Skills_I_Day_6_Array, Udemy_Arrays, Big_O_Time_O(n)_ Space_O(1) | 0 | 100.00
1396
+ | 0240 |[ Search a 2D Matrix II] ( src/main/js/g0201_0300/s0240_search_a_2d_matrix_ii/solution.js ) | Medium | Top_100_Liked_Questions, Array, Binary_Search, Matrix, Divide_and_Conquer, Data_Structure_II_Day_4_Array, Binary_Search_II_Day_8, Big_O_Time_O(n+m)_ Space_O(1) | 279 | 94.52
1397
+ | 0239 |[ Sliding Window Maximum] ( src/main/js/g0201_0300/s0239_sliding_window_maximum/solution.js ) | Hard | Top_100_Liked_Questions, Array, Heap_Priority_Queue, Sliding_Window, Queue, Monotonic_Queue, Udemy_Arrays, Big_O_Time_O(n\* k)_ Space_O(n+k) | 28 | 98.27
1398
+ | 0238 |[ Product of Array Except Self] ( src/main/js/g0201_0300/s0238_product_of_array_except_self/solution.js ) | Medium | Top_100_Liked_Questions, Array, Prefix_Sum, Data_Structure_II_Day_5_Array, Udemy_Arrays, Big_O_Time_O(n^2)_ Space_O(n) | 3 | 93.60
1399
+ | 0236 |[ Lowest Common Ancestor of a Binary Tree] ( src/main/js/g0201_0300/s0236_lowest_common_ancestor_of_a_binary_tree/solution.js ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Data_Structure_II_Day_18_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(n)_ Space_O(n) | 53 | 98.59
1400
+ | 0234 |[ Palindrome Linked List] ( src/main/js/g0201_0300/s0234_palindrome_linked_list/solution.js ) | Easy | Top_100_Liked_Questions, Two_Pointers, Stack, Linked_List, Recursion, Level_2_Day_3_Linked_List, Udemy_Linked_List, Big_O_Time_O(n)_ Space_O(1) | 3 | 93.71
1401
+ | 0230 |[ Kth Smallest Element in a BST] ( src/main/js/g0201_0300/s0230_kth_smallest_element_in_a_bst/solution.js ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Data_Structure_II_Day_17_Tree, Level_2_Day_9_Binary_Search_Tree, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
1373
1402
| 0226 |[ Invert Binary Tree] ( src/main/js/g0201_0300/s0226_invert_binary_tree/solution.js ) | Easy | Top_100_Liked_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, Data_Structure_I_Day_12_Tree, Level_2_Day_6_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
1374
1403
| 0221 |[ Maximal Square] ( src/main/js/g0201_0300/s0221_maximal_square/solution.js ) | Medium | Array, Dynamic_Programming, Matrix, Dynamic_Programming_I_Day_16, Big_O_Time_O(m\* n)_ Space_O(m\* n) | 12 | 87.32
1375
1404
| 0215 |[ Kth Largest Element in an Array] ( src/main/js/g0201_0300/s0215_kth_largest_element_in_an_array/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Sorting, Heap_Priority_Queue, Divide_and_Conquer, Quickselect, Data_Structure_II_Day_20_Heap_Priority_Queue, Big_O_Time_O(n\* log(n))_ Space_O(log(n)) | 9 | 97.67
0 commit comments