@@ -9,7 +9,6 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
9
9
> [ "For coding interview preparation, LeetCode is one of the best online resource providing a rich library of more than 300 real coding interview questions for you to practice from using one of the 7 supported languages - C, C++, Java, Python, C#, JavaScript, Ruby."] ( https://www.quora.com/How-effective-is-Leetcode-for-preparing-for-technical-interviews )
10
10
11
11
##
12
- * [ Data Structure II] ( #data-structure-ii )
13
12
* [ Algorithm I] ( #algorithm-i )
14
13
* [ Algorithm II] ( #algorithm-ii )
15
14
* [ Binary Search I] ( #binary-search-i )
@@ -23,115 +22,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
23
22
* [ Level 2] ( #level-2 )
24
23
* [ Udemy] ( #udemy )
25
24
* [ Data Structure I] ( #data-structure-i )
26
-
27
- ### Data Structure II
28
-
29
- #### Day 1 Array
30
-
31
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
32
- |-|-|-|-|-|-
33
-
34
- #### Day 2 Array
35
-
36
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
37
- |-|-|-|-|-|-
38
-
39
- #### Day 3 Array
40
-
41
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
42
- |-|-|-|-|-|-
43
-
44
- #### Day 4 Array
45
-
46
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
47
- |-|-|-|-|-|-
48
-
49
- #### Day 5 Array
50
-
51
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
52
- |-|-|-|-|-|-
53
-
54
- #### Day 6 String
55
-
56
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
57
- |-|-|-|-|-|-
58
-
59
- #### Day 7 String
60
-
61
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
62
- |-|-|-|-|-|-
63
-
64
- #### Day 8 String
65
-
66
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
67
- |-|-|-|-|-|-
68
-
69
- #### Day 9 String
70
-
71
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
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
74
-
75
- #### Day 10 Linked List
76
-
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
80
-
81
- #### Day 11 Linked List
82
-
83
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
84
- |-|-|-|-|-|-
85
-
86
- #### Day 12 Linked List
87
-
88
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
89
- |-|-|-|-|-|-
90
-
91
- #### Day 13 Linked List
92
-
93
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
94
- |-|-|-|-|-|-
95
-
96
- #### Day 14 Stack Queue
97
-
98
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
99
- |-|-|-|-|-|-
100
-
101
- #### Day 15 Tree
102
-
103
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
104
- |-|-|-|-|-|-
105
-
106
- #### Day 16 Tree
107
-
108
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
109
- |-|-|-|-|-|-
110
-
111
- #### Day 17 Tree
112
-
113
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
114
- |-|-|-|-|-|-
115
-
116
- #### Day 18 Tree
117
-
118
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
119
- |-|-|-|-|-|-
120
-
121
- #### Day 19 Graph
122
-
123
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
124
- |-|-|-|-|-|-
125
-
126
- #### Day 20 Heap Priority Queue
127
-
128
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
129
- |-|-|-|-|-|-
130
-
131
- #### Day 21 Heap Priority Queue
132
-
133
- | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
134
- |-|-|-|-|-|-
25
+ * [ Data Structure II] ( #data-structure-ii )
135
26
136
27
### Algorithm I
137
28
@@ -159,6 +50,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
159
50
160
51
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
161
52
|-|-|-|-|-|-
53
+ | 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
162
54
163
55
#### Day 6 Sliding Window
164
56
@@ -222,11 +114,13 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
222
114
223
115
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
224
116
|-|-|-|-|-|-
117
+ | 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
225
118
226
119
#### Day 4 Two Pointers
227
120
228
121
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
229
122
|-|-|-|-|-|-
123
+ | 0011 |[ Container With Most Water] ( src/main/js/g0001_0100/s0011_container_with_most_water/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Greedy, Two_Pointers, Big_O_Time_O(n)_ Space_O(1) | 1 | 95.77
230
124
231
125
#### Day 5 Sliding Window
232
126
@@ -262,6 +156,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
262
156
263
157
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
264
158
|-|-|-|-|-|-
159
+ | 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
265
160
266
161
#### Day 12 Dynamic Programming
267
162
@@ -969,6 +864,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
969
864
970
865
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
971
866
|-|-|-|-|-|-
867
+ | 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
972
868
973
869
#### Day 4 Linked List
974
870
@@ -1062,12 +958,15 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1062
958
1063
959
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1064
960
|-|-|-|-|-|-
961
+ | 0007 |[ Reverse Integer] ( src/main/js/g0001_0100/s0007_reverse_integer/solution.js ) | Medium | Top_Interview_Questions, Math | 66 | 87.91
962
+ | 0009 |[ Palindrome Number] ( src/main/js/g0001_0100/s0009_palindrome_number/solution.js ) | Easy | Math | 4 | 97.14
1065
963
1066
964
#### Udemy Strings
1067
965
1068
966
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1069
967
|-|-|-|-|-|-
1070
968
| 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
969
+ | 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
1071
970
| 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
1072
971
1073
972
#### Udemy Binary Search
@@ -1085,6 +984,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1085
984
1086
985
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1087
986
|-|-|-|-|-|-
987
+ | 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
1088
988
1089
989
#### Udemy Famous Algorithm
1090
990
@@ -1125,11 +1025,13 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1125
1025
1126
1026
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1127
1027
|-|-|-|-|-|-
1028
+ | 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
1128
1029
1129
1030
#### Udemy Backtracking/Recursion
1130
1031
1131
1032
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1132
1033
|-|-|-|-|-|-
1034
+ | 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
1133
1035
1134
1036
#### Udemy Bit Manipulation
1135
1037
@@ -1188,6 +1090,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1188
1090
1189
1091
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1190
1092
|-|-|-|-|-|-
1093
+ | 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
1191
1094
1192
1095
#### Day 10 Tree
1193
1096
@@ -1214,10 +1117,130 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1214
1117
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1215
1118
|-|-|-|-|-|-
1216
1119
1120
+ ### Data Structure II
1121
+
1122
+ #### Day 1 Array
1123
+
1124
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1125
+ |-|-|-|-|-|-
1126
+ | 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
1127
+
1128
+ #### Day 2 Array
1129
+
1130
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1131
+ |-|-|-|-|-|-
1132
+
1133
+ #### Day 3 Array
1134
+
1135
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1136
+ |-|-|-|-|-|-
1137
+
1138
+ #### Day 4 Array
1139
+
1140
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1141
+ |-|-|-|-|-|-
1142
+
1143
+ #### Day 5 Array
1144
+
1145
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1146
+ |-|-|-|-|-|-
1147
+
1148
+ #### Day 6 String
1149
+
1150
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1151
+ |-|-|-|-|-|-
1152
+
1153
+ #### Day 7 String
1154
+
1155
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1156
+ |-|-|-|-|-|-
1157
+
1158
+ #### Day 8 String
1159
+
1160
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1161
+ |-|-|-|-|-|-
1162
+
1163
+ #### Day 9 String
1164
+
1165
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1166
+ |-|-|-|-|-|-
1167
+ | 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
1168
+
1169
+ #### Day 10 Linked List
1170
+
1171
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1172
+ |-|-|-|-|-|-
1173
+ | 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
1174
+
1175
+ #### Day 11 Linked List
1176
+
1177
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1178
+ |-|-|-|-|-|-
1179
+
1180
+ #### Day 12 Linked List
1181
+
1182
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1183
+ |-|-|-|-|-|-
1184
+
1185
+ #### Day 13 Linked List
1186
+
1187
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1188
+ |-|-|-|-|-|-
1189
+
1190
+ #### Day 14 Stack Queue
1191
+
1192
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1193
+ |-|-|-|-|-|-
1194
+
1195
+ #### Day 15 Tree
1196
+
1197
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1198
+ |-|-|-|-|-|-
1199
+
1200
+ #### Day 16 Tree
1201
+
1202
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1203
+ |-|-|-|-|-|-
1204
+
1205
+ #### Day 17 Tree
1206
+
1207
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1208
+ |-|-|-|-|-|-
1209
+
1210
+ #### Day 18 Tree
1211
+
1212
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1213
+ |-|-|-|-|-|-
1214
+
1215
+ #### Day 19 Graph
1216
+
1217
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1218
+ |-|-|-|-|-|-
1219
+
1220
+ #### Day 20 Heap Priority Queue
1221
+
1222
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1223
+ |-|-|-|-|-|-
1224
+
1225
+ #### Day 21 Heap Priority Queue
1226
+
1227
+ | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1228
+ |-|-|-|-|-|-
1229
+
1217
1230
## Algorithms
1218
1231
1219
1232
| # | Title | Difficulty | Tag | Time, ms | Time, %
1220
1233
|------|----------------|-------------|-------------|----------|---------
1234
+ | 0020 |[ Valid Parentheses] ( src/main/js/g0001_0100/s0020_valid_parentheses/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, String, Stack, Data_Structure_I_Day_9_Stack_Queue, Udemy_Strings, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
1235
+ | 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, Algorithm_I_Day_5_Two_Pointers, Level_2_Day_3_Linked_List, Big_O_Time_O(L)_ Space_O(L) | 0 | 100.00
1236
+ | 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, Algorithm_II_Day_11_Recursion_Backtracking, Udemy_Backtracking/Recursion, Big_O_Time_O(4^n)_ Space_O(n) | 0 | 100.00
1237
+ | 0015 |[ 3Sum] ( src/main/js/g0001_0100/s0015_3sum/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Sorting, Two_Pointers, Data_Structure_II_Day_1_Array, Algorithm_II_Day_3_Two_Pointers, Udemy_Two_Pointers, Big_O_Time_O(n\* log(n))_ Space_O(n^2) | 31 | 91.92
1238
+ | 0011 |[ Container With Most Water] ( src/main/js/g0001_0100/s0011_container_with_most_water/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Greedy, Two_Pointers, Algorithm_II_Day_4_Two_Pointers, Big_O_Time_O(n)_ Space_O(1) | 1 | 95.77
1239
+ | 0010 |[ Regular Expression Matching] ( src/main/js/g0001_0100/s0010_regular_expression_matching/solution.js ) | Hard | Top_Interview_Questions, String, Dynamic_Programming, Recursion, Udemy_Dynamic_Programming, Big_O_Time_O(m\* n)_ Space_O(m\* n) | 4 | 95.52
1240
+ | 0009 |[ Palindrome Number] ( src/main/js/g0001_0100/s0009_palindrome_number/solution.js ) | Easy | Math, Udemy_Integers | 4 | 97.14
1241
+ | 0008 |[ String to Integer (atoi)] ( src/main/js/g0001_0100/s0008_string_to_integer_atoi/solution.js ) | Medium | Top_Interview_Questions, String | 1 | 96.63
1242
+ | 0007 |[ Reverse Integer] ( src/main/js/g0001_0100/s0007_reverse_integer/solution.js ) | Medium | Top_Interview_Questions, Math, Udemy_Integers | 66 | 87.91
1243
+ | 0006 |[ Zigzag Conversion] ( src/main/js/g0001_0100/s0006_zigzag_conversion/solution.js ) | Medium | String | 2 | 99.71
1221
1244
| 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
1245
| 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
1246
| 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
0 commit comments