|
136 | 136 | "jump_game", |
137 | 137 | "kth_smallest_element_in_a_bst", |
138 | 138 | "linked_list_cycle", |
| 139 | + "longest_common_subsequence", |
139 | 140 | "longest_consecutive_sequence", |
140 | 141 | "longest_increasing_subsequence", |
141 | 142 | "longest_palindromic_substring", |
| 143 | + "longest_repeating_character_replacement", |
142 | 144 | "longest_substring_without_repeating_characters", |
143 | 145 | "lowest_common_ancestor_of_a_binary_search_tree", |
144 | 146 | "maximum_depth_of_binary_tree", |
|
149 | 151 | "merge_two_sorted_lists", |
150 | 152 | "minimum_window_substring", |
151 | 153 | "missing_number", |
| 154 | + "non_overlapping_intervals", |
152 | 155 | "number_of_1_bits", |
153 | 156 | "number_of_islands", |
154 | 157 | "pacific_atlantic_water_flow", |
| 158 | + "palindromic_substrings", |
155 | 159 | "product_of_array_except_self", |
156 | 160 | "remove_nth_node_from_end_of_list", |
157 | 161 | "reorder_list", |
|
163 | 167 | "serialize_and_deserialize_binary_tree", |
164 | 168 | "set_matrix_zeroes", |
165 | 169 | "spiral_matrix", |
| 170 | + "subtree_of_another_tree", |
| 171 | + "sum_of_two_integers", |
166 | 172 | "three_sum", |
167 | 173 | "top_k_frequent_elements", |
168 | 174 | "two_sum", |
|
178 | 184 |
|
179 | 185 | // NeetCode 150 - (on-going) |
180 | 186 | "neetcode-150": [ |
| 187 | + "add_two_numbers", |
181 | 188 | "alien_dictionary", |
182 | 189 | "balanced_binary_tree", |
183 | 190 | "best_time_to_buy_and_sell_stock", |
|
216 | 223 | "largest_rectangle_in_histogram", |
217 | 224 | "letter_combinations_of_a_phone_number", |
218 | 225 | "linked_list_cycle", |
| 226 | + "longest_common_subsequence", |
219 | 227 | "longest_consecutive_sequence", |
220 | 228 | "longest_increasing_subsequence", |
221 | 229 | "longest_palindromic_substring", |
| 230 | + "longest_repeating_character_replacement", |
222 | 231 | "longest_substring_without_repeating_characters", |
223 | 232 | "lowest_common_ancestor_of_a_binary_search_tree", |
224 | 233 | "lru_cache", |
225 | 234 | "maximum_depth_of_binary_tree", |
226 | 235 | "maximum_product_subarray", |
227 | 236 | "maximum_subarray", |
| 237 | + "median_of_two_sorted_arrays", |
228 | 238 | "merge_intervals", |
229 | 239 | "merge_k_sorted_lists", |
230 | 240 | "merge_two_sorted_lists", |
231 | 241 | "min_stack", |
232 | 242 | "minimum_window_substring", |
233 | 243 | "missing_number", |
| 244 | + "non_overlapping_intervals", |
234 | 245 | "number_of_1_bits", |
235 | 246 | "number_of_islands", |
236 | 247 | "pacific_atlantic_water_flow", |
| 248 | + "palindromic_substrings", |
237 | 249 | "partition_equal_subset_sum", |
238 | 250 | "permutations", |
239 | 251 | "product_of_array_except_self", |
240 | 252 | "remove_nth_node_from_end_of_list", |
241 | 253 | "reorder_list", |
242 | 254 | "reverse_bits", |
| 255 | + "reverse_integer", |
243 | 256 | "reverse_linked_list", |
| 257 | + "reverse_nodes_in_k_group", |
244 | 258 | "rotate_image", |
245 | 259 | "rotting_oranges", |
246 | 260 | "same_tree", |
|
249 | 263 | "set_matrix_zeroes", |
250 | 264 | "spiral_matrix", |
251 | 265 | "subsets", |
| 266 | + "subtree_of_another_tree", |
| 267 | + "sum_of_two_integers", |
252 | 268 | "task_scheduler", |
253 | 269 | "three_sum", |
254 | 270 | "time_based_key_value_store", |
|
269 | 285 |
|
270 | 286 | // Algo Master 75 - (on-going) |
271 | 287 | "algo-master-75": [ |
| 288 | + "add_two_numbers", |
272 | 289 | "binary_tree_level_order_traversal", |
273 | 290 | "binary_tree_maximum_path_sum", |
274 | 291 | "binary_tree_right_side_view", |
|
284 | 301 | "implement_trie_prefix_tree", |
285 | 302 | "kth_smallest_element_in_a_bst", |
286 | 303 | "largest_rectangle_in_histogram", |
| 304 | + "longest_common_subsequence", |
287 | 305 | "longest_consecutive_sequence", |
288 | 306 | "longest_increasing_subsequence", |
289 | 307 | "longest_substring_without_repeating_characters", |
290 | 308 | "lowest_common_ancestor_of_a_binary_tree", |
291 | 309 | "lru_cache", |
292 | 310 | "majority_element", |
293 | 311 | "maximum_subarray", |
| 312 | + "median_of_two_sorted_arrays", |
294 | 313 | "merge_intervals", |
295 | 314 | "merge_k_sorted_lists", |
296 | 315 | "min_stack", |
297 | 316 | "minimum_window_substring", |
| 317 | + "non_overlapping_intervals", |
298 | 318 | "number_of_islands", |
299 | 319 | "partition_equal_subset_sum", |
300 | 320 | "permutations", |
301 | 321 | "product_of_array_except_self", |
302 | 322 | "remove_nth_node_from_end_of_list", |
| 323 | + "reverse_integer", |
| 324 | + "reverse_nodes_in_k_group", |
303 | 325 | "rotate_image", |
304 | 326 | "rotting_oranges", |
305 | 327 | "search_in_rotated_sorted_array", |
|
0 commit comments