@@ -169,6 +169,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
169169
170170| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
171171|-|-|-|-|-|-
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
172173
173174#### Day 13 Dynamic Programming
174175
@@ -405,12 +406,14 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
405406
406407| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
407408|-|-|-|-|-|-
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
408410| 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
409411
410412#### Day 5
411413
412414| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
413415|-|-|-|-|-|-
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
414417
415418#### Day 6
416419
@@ -592,6 +595,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
592595
593596| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
594597|-|-|-|-|-|-
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
595599
596600#### Day 8
597601
@@ -612,6 +616,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
612616
613617| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
614618|-|-|-|-|-|-
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
615620
616621#### Day 12
617622
@@ -985,6 +990,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
985990| 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
986991| 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
987992| 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
988994
989995#### Udemy Binary Search
990996
@@ -997,6 +1003,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
9971003| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
9981004|-|-|-|-|-|-
9991005| 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
10001007| 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
10011008
10021009#### Udemy Two Pointers
@@ -1010,6 +1017,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
10101017
10111018| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
10121019|-|-|-|-|-|-
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
10131021
10141022#### Udemy Sorting Algorithms
10151023
@@ -1020,6 +1028,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
10201028
10211029| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
10221030|-|-|-|-|-|-
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
10231032
10241033#### Udemy Linked List
10251034
@@ -1075,6 +1084,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
10751084
10761085| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
10771086|-|-|-|-|-|-
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
10781088
10791089#### Day 2 Array
10801090
@@ -1161,6 +1171,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
11611171
11621172| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
11631173|-|-|-|-|-|-
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
11641175
11651176#### Day 4 Array
11661177
@@ -1186,6 +1197,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
11861197
11871198| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
11881199|-|-|-|-|-|-
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
11891201
11901202#### Day 9 String
11911203
@@ -1260,6 +1272,11 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
12601272
12611273| # | Title | Difficulty | Tag | Time, ms | Time, %
12621274|------|----------------|-------------|-------------|----------|---------
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
12631280| 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
12641281| 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
12651282| 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