@@ -70,11 +70,13 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
70
70
71
71
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
72
72
|-|-|-|-|-|-
73
+ | 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
73
74
74
75
#### Day 10 Linked List
75
76
76
77
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
77
78
|-|-|-|-|-|-
79
+ | 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
78
80
79
81
#### Day 11 Linked List
80
82
@@ -162,6 +164,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
162
164
163
165
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
164
166
|-|-|-|-|-|-
167
+ | 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
165
168
166
169
#### Day 7 Breadth First Search Depth First Search
167
170
@@ -274,6 +277,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
274
277
275
278
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
276
279
|-|-|-|-|-|-
280
+ | 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
277
281
278
282
#### Day 15 Dynamic Programming
279
283
@@ -560,6 +564,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
560
564
561
565
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
562
566
|-|-|-|-|-|-
567
+ | 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
563
568
564
569
#### Day 18
565
570
@@ -719,6 +724,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
719
724
720
725
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
721
726
|-|-|-|-|-|-
727
+ | 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
722
728
723
729
#### Day 16
724
730
@@ -1018,6 +1024,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1018
1024
1019
1025
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1020
1026
|-|-|-|-|-|-
1027
+ | 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
1021
1028
1022
1029
#### Day 15 Tree
1023
1030
@@ -1060,6 +1067,8 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1060
1067
1061
1068
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1062
1069
|-|-|-|-|-|-
1070
+ | 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
1071
+ | 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
1063
1072
1064
1073
#### Udemy Binary Search
1065
1074
@@ -1209,6 +1218,10 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1209
1218
1210
1219
| # | Title | Difficulty | Tag | Time, ms | Time, %
1211
1220
|------|----------------|-------------|-------------|----------|---------
1221
+ | 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, Data_Structure_II_Day_9_String, Algorithm_II_Day_14_Dynamic_Programming, Dynamic_Programming_I_Day_17, Udemy_Strings, Big_O_Time_O(n)_ Space_O(n) | 10 | 99.54
1222
+ | 0004 |[ Median of Two Sorted Arrays] ( src/main/js/g0001_0100/s0004_median_of_two_sorted_arrays/solution.js ) | Hard | Top_100_Liked_Questions, Top_Interview_Questions, Array, Binary_Search, Divide_and_Conquer, Big_O_Time_O(log(min(N,M)))_ Space_O(1), AI_can_be_used_to_solve_the_task | 3 | 91.90
1223
+ | 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, Algorithm_I_Day_6_Sliding_Window, Level_2_Day_14_Sliding_Window/Two_Pointer, Udemy_Strings, Big_O_Time_O(n)_ Space_O(1), AI_can_be_used_to_solve_the_task | 3 | 98.96
1224
+ | 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, Data_Structure_II_Day_10_Linked_List, Programming_Skills_II_Day_15, Big_O_Time_O(max(N,M))_ Space_O(max(N,M)), AI_can_be_used_to_solve_the_task | 3 | 81.61
1212
1225
| 0001 |[ Two Sum] ( src/main/js/g0001_0100/s0001_two_sum/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Data_Structure_I_Day_2_Array, Level_1_Day_13_Hashmap, Udemy_Arrays, Big_O_Time_O(n)_ Space_O(n), AI_can_be_used_to_solve_the_task | 1 | 89.15
1213
1226
1214
1227
## Contributing
0 commit comments