@@ -84,6 +84,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
84
84
85
85
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
86
86
|-|-|-|-|-|-
87
+ | 0046 |[ Permutations] ( src/main/js/g0001_0100/s0046_permutations/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Backtracking, Big_O_Time_O(n\* n!)_ Space_O(n+n!) | 0 | 100.00
87
88
88
89
#### Day 12 Dynamic Programming
89
90
@@ -155,6 +156,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
155
156
156
157
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
157
158
|-|-|-|-|-|-
159
+ | 0039 |[ Combination Sum] ( src/main/js/g0001_0100/s0039_combination_sum/solution.js ) | Medium | Top_100_Liked_Questions, Array, Backtracking, Big_O_Time_O(2^n)_ Space_O(n+2^n) | 1 | 98.51
158
160
159
161
#### Day 11 Recursion Backtracking
160
162
@@ -172,6 +174,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
172
174
173
175
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
174
176
|-|-|-|-|-|-
177
+ | 0045 |[ Jump Game II] ( src/main/js/g0001_0100/s0045_jump_game_ii/solution.js ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Greedy, Big_O_Time_O(n)_ Space_O(1) | 0 | 100.00
175
178
176
179
#### Day 14 Dynamic Programming
177
180
@@ -402,6 +405,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
402
405
403
406
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
404
407
|-|-|-|-|-|-
408
+ | 0045 |[ Jump Game II] ( src/main/js/g0001_0100/s0045_jump_game_ii/solution.js ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Greedy, Big_O_Time_O(n)_ Space_O(1) | 0 | 100.00
405
409
406
410
#### Day 5
407
411
@@ -427,6 +431,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
427
431
428
432
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
429
433
|-|-|-|-|-|-
434
+ | 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
430
435
431
436
#### Day 10
432
437
@@ -961,6 +966,8 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
961
966
962
967
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
963
968
|-|-|-|-|-|-
969
+ | 0039 |[ Combination Sum] ( src/main/js/g0001_0100/s0039_combination_sum/solution.js ) | Medium | Top_100_Liked_Questions, Array, Backtracking, Big_O_Time_O(2^n)_ Space_O(n+2^n) | 1 | 98.51
970
+ | 0046 |[ Permutations] ( src/main/js/g0001_0100/s0046_permutations/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Backtracking, Big_O_Time_O(n\* n!)_ Space_O(n+n!) | 0 | 100.00
964
971
965
972
### Udemy
966
973
@@ -990,11 +997,13 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
990
997
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
991
998
|-|-|-|-|-|-
992
999
| 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
1000
+ | 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
993
1001
994
1002
#### Udemy Two Pointers
995
1003
996
1004
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
997
1005
|-|-|-|-|-|-
1006
+ | 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
998
1007
| 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
999
1008
1000
1009
#### Udemy Famous Algorithm
@@ -1046,7 +1055,9 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1046
1055
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1047
1056
|-|-|-|-|-|-
1048
1057
| 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
1058
+ | 0039 |[ Combination Sum] ( src/main/js/g0001_0100/s0039_combination_sum/solution.js ) | Medium | Top_100_Liked_Questions, Array, Backtracking, Big_O_Time_O(2^n)_ Space_O(n+2^n) | 1 | 98.51
1049
1059
| 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
1060
+ | 0046 |[ Permutations] ( src/main/js/g0001_0100/s0046_permutations/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Backtracking, Big_O_Time_O(n\* n!)_ Space_O(n+n!) | 0 | 100.00
1050
1061
1051
1062
#### Udemy Bit Manipulation
1052
1063
@@ -1249,6 +1260,11 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1249
1260
1250
1261
| # | Title | Difficulty | Tag | Time, ms | Time, %
1251
1262
|------|----------------|-------------|-------------|----------|---------
1263
+ | 0046 |[ Permutations] ( src/main/js/g0001_0100/s0046_permutations/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Backtracking, Algorithm_I_Day_11_Recursion_Backtracking, Level_2_Day_20_Brute_Force/Backtracking, Udemy_Backtracking/Recursion, Big_O_Time_O(n\* n!)_ Space_O(n+n!) | 0 | 100.00
1264
+ | 0045 |[ Jump Game II] ( src/main/js/g0001_0100/s0045_jump_game_ii/solution.js ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Greedy, Algorithm_II_Day_13_Dynamic_Programming, Dynamic_Programming_I_Day_4, Big_O_Time_O(n)_ Space_O(1) | 0 | 100.00
1265
+ | 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, Dynamic_Programming_I_Day_9, Udemy_Two_Pointers, Big_O_Time_O(n)_ Space_O(1) | 0 | 100.00
1266
+ | 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, Udemy_Arrays, Big_O_Time_O(n)_ Space_O(n) | 1 | 98.86
1267
+ | 0039 |[ Combination Sum] ( src/main/js/g0001_0100/s0039_combination_sum/solution.js ) | Medium | Top_100_Liked_Questions, Array, Backtracking, Algorithm_II_Day_10_Recursion_Backtracking, Level_2_Day_20_Brute_Force/Backtracking, Udemy_Backtracking/Recursion, Big_O_Time_O(2^n)_ Space_O(n+2^n) | 1 | 98.51
1252
1268
| 0035 |[ Search Insert Position] ( src/main/js/g0001_0100/s0035_search_insert_position/solution.js ) | Easy | Top_100_Liked_Questions, Array, Binary_Search, Algorithm_I_Day_1_Binary_Search, Binary_Search_I_Day_2, Big_O_Time_O(log_n)_ Space_O(1) | 0 | 100.00
1253
1269
| 0034 |[ Find First and Last Position of Element in Sorted Array] ( src/main/js/g0001_0100/s0034_find_first_and_last_position_of_element_in_sorted_array/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Binary_Search, Algorithm_II_Day_1_Binary_Search, Binary_Search_I_Day_5, Big_O_Time_O(log_n)_ Space_O(1) | 0 | 100.00
1254
1270
| 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, Algorithm_II_Day_1_Binary_Search, Binary_Search_I_Day_11, Level_2_Day_8_Binary_Search, Udemy_Binary_Search, Big_O_Time_O(log_n)_ Space_O(1) | 0 | 100.00
0 commit comments