@@ -169,6 +169,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
169
169
170
170
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
171
171
|-|-|-|-|-|-
172
+ | 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
172
173
173
174
#### Day 13 Dynamic Programming
174
175
@@ -405,12 +406,14 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
405
406
406
407
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
407
408
|-|-|-|-|-|-
409
+ | 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
408
410
| 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
409
411
410
412
#### Day 5
411
413
412
414
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
413
415
|-|-|-|-|-|-
416
+ | 0053 |[ Maximum Subarray] ( src/main/js/g0001_0100/s0053_maximum_subarray/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Divide_and_Conquer, Big_O_Time_O(n)_ Space_O(1) | 1 | 85.69
414
417
415
418
#### Day 6
416
419
@@ -592,6 +595,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
592
595
593
596
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
594
597
|-|-|-|-|-|-
598
+ | 0048 |[ Rotate Image] ( src/main/js/g0001_0100/s0048_rotate_image/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Math, Matrix, Big_O_Time_O(n^2)_ Space_O(1) | 0 | 100.00
595
599
596
600
#### Day 8
597
601
@@ -612,6 +616,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
612
616
613
617
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
614
618
|-|-|-|-|-|-
619
+ | 0049 |[ Group Anagrams] ( src/main/js/g0001_0100/s0049_group_anagrams/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, String, Hash_Table, Sorting, Big_O_Time_O(n\* k_log_k)_ Space_O(n) | 24 | 91.62
615
620
616
621
#### Day 12
617
622
@@ -985,6 +990,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
985
990
| 0003 |[ Longest Substring Without Repeating Characters] ( src/main/js/g0001_0100/s0003_longest_substring_without_repeating_characters/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Sliding_Window, Big_O_Time_O(n)_ Space_O(1), AI_can_be_used_to_solve_the_task | 3 | 98.96
986
991
| 0020 |[ Valid Parentheses] ( src/main/js/g0001_0100/s0020_valid_parentheses/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, String, Stack, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
987
992
| 0005 |[ Longest Palindromic Substring] ( src/main/js/g0001_0100/s0005_longest_palindromic_substring/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Dynamic_Programming, Big_O_Time_O(n)_ Space_O(n) | 10 | 99.54
993
+ | 0049 |[ Group Anagrams] ( src/main/js/g0001_0100/s0049_group_anagrams/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, String, Hash_Table, Sorting, Big_O_Time_O(n\* k_log_k)_ Space_O(n) | 24 | 91.62
988
994
989
995
#### Udemy Binary Search
990
996
@@ -997,6 +1003,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
997
1003
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
998
1004
|-|-|-|-|-|-
999
1005
| 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
1006
+ | 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
1000
1007
| 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
1001
1008
1002
1009
#### Udemy Two Pointers
@@ -1010,6 +1017,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1010
1017
1011
1018
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1012
1019
|-|-|-|-|-|-
1020
+ | 0053 |[ Maximum Subarray] ( src/main/js/g0001_0100/s0053_maximum_subarray/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Divide_and_Conquer, Big_O_Time_O(n)_ Space_O(1) | 1 | 85.69
1013
1021
1014
1022
#### Udemy Sorting Algorithms
1015
1023
@@ -1020,6 +1028,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1020
1028
1021
1029
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1022
1030
|-|-|-|-|-|-
1031
+ | 0048 |[ Rotate Image] ( src/main/js/g0001_0100/s0048_rotate_image/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Math, Matrix, Big_O_Time_O(n^2)_ Space_O(1) | 0 | 100.00
1023
1032
1024
1033
#### Udemy Linked List
1025
1034
@@ -1075,6 +1084,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1075
1084
1076
1085
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1077
1086
|-|-|-|-|-|-
1087
+ | 0053 |[ Maximum Subarray] ( src/main/js/g0001_0100/s0053_maximum_subarray/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Divide_and_Conquer, Big_O_Time_O(n)_ Space_O(1) | 1 | 85.69
1078
1088
1079
1089
#### Day 2 Array
1080
1090
@@ -1161,6 +1171,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1161
1171
1162
1172
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1163
1173
|-|-|-|-|-|-
1174
+ | 0048 |[ Rotate Image] ( src/main/js/g0001_0100/s0048_rotate_image/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Math, Matrix, Big_O_Time_O(n^2)_ Space_O(1) | 0 | 100.00
1164
1175
1165
1176
#### Day 4 Array
1166
1177
@@ -1186,6 +1197,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1186
1197
1187
1198
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1188
1199
|-|-|-|-|-|-
1200
+ | 0049 |[ Group Anagrams] ( src/main/js/g0001_0100/s0049_group_anagrams/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, String, Hash_Table, Sorting, Big_O_Time_O(n\* k_log_k)_ Space_O(n) | 24 | 91.62
1189
1201
1190
1202
#### Day 9 String
1191
1203
@@ -1260,6 +1272,11 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1260
1272
1261
1273
| # | Title | Difficulty | Tag | Time, ms | Time, %
1262
1274
|------|----------------|-------------|-------------|----------|---------
1275
+ | 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, Algorithm_II_Day_12_Dynamic_Programming, Dynamic_Programming_I_Day_4, Udemy_Arrays, Big_O_Time_O(n)_ Space_O(1) | 0 | 100.00
1276
+ | 0053 |[ Maximum Subarray] ( src/main/js/g0001_0100/s0053_maximum_subarray/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Divide_and_Conquer, Data_Structure_I_Day_1_Array, Dynamic_Programming_I_Day_5, Udemy_Famous_Algorithm, Big_O_Time_O(n)_ Space_O(1) | 1 | 85.69
1277
+ | 0051 |[ N-Queens] ( src/main/js/g0001_0100/s0051_n_queens/solution.js ) | Hard | Top_100_Liked_Questions, Array, Backtracking, Big_O_Time_O(N!)_ Space_O(N) | 6 | 96.66
1278
+ | 0049 |[ Group Anagrams] ( src/main/js/g0001_0100/s0049_group_anagrams/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, String, Hash_Table, Sorting, Data_Structure_II_Day_8_String, Programming_Skills_II_Day_11, Udemy_Strings, Big_O_Time_O(n\* k_log_k)_ Space_O(n) | 24 | 91.62
1279
+ | 0048 |[ Rotate Image] ( src/main/js/g0001_0100/s0048_rotate_image/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Math, Matrix, Data_Structure_II_Day_3_Array, Programming_Skills_II_Day_7, Udemy_2D_Arrays/Matrix, Big_O_Time_O(n^2)_ Space_O(1) | 0 | 100.00
1263
1280
| 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
1281
| 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
1282
| 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
0 commit comments