|
25 | 25 | * [Combination Sum](backtracking/combination_sum.py)
|
26 | 26 | * [Hamiltonian Cycle](backtracking/hamiltonian_cycle.py)
|
27 | 27 | * [Knight Tour](backtracking/knight_tour.py)
|
| 28 | + * [Match Word Pattern](backtracking/match_word_pattern.py) |
28 | 29 | * [Minimax](backtracking/minimax.py)
|
29 | 30 | * [N Queens](backtracking/n_queens.py)
|
30 | 31 | * [N Queens Math](backtracking/n_queens_math.py)
|
|
50 | 51 | * [Index Of Rightmost Set Bit](bit_manipulation/index_of_rightmost_set_bit.py)
|
51 | 52 | * [Is Even](bit_manipulation/is_even.py)
|
52 | 53 | * [Is Power Of Two](bit_manipulation/is_power_of_two.py)
|
| 54 | + * [Largest Pow Of Two Le Num](bit_manipulation/largest_pow_of_two_le_num.py) |
53 | 55 | * [Missing Number](bit_manipulation/missing_number.py)
|
54 | 56 | * [Numbers Different Signs](bit_manipulation/numbers_different_signs.py)
|
55 | 57 | * [Reverse Bits](bit_manipulation/reverse_bits.py)
|
|
198 | 200 | * [Red Black Tree](data_structures/binary_tree/red_black_tree.py)
|
199 | 201 | * [Segment Tree](data_structures/binary_tree/segment_tree.py)
|
200 | 202 | * [Segment Tree Other](data_structures/binary_tree/segment_tree_other.py)
|
| 203 | + * [Symmetric Tree](data_structures/binary_tree/symmetric_tree.py) |
201 | 204 | * [Treap](data_structures/binary_tree/treap.py)
|
202 | 205 | * [Wavelet Tree](data_structures/binary_tree/wavelet_tree.py)
|
203 | 206 | * Disjoint Set
|
|
276 | 279 | * [Convolve](digital_image_processing/filters/convolve.py)
|
277 | 280 | * [Gabor Filter](digital_image_processing/filters/gabor_filter.py)
|
278 | 281 | * [Gaussian Filter](digital_image_processing/filters/gaussian_filter.py)
|
| 282 | + * [Laplacian Filter](digital_image_processing/filters/laplacian_filter.py) |
279 | 283 | * [Local Binary Pattern](digital_image_processing/filters/local_binary_pattern.py)
|
280 | 284 | * [Median Filter](digital_image_processing/filters/median_filter.py)
|
281 | 285 | * [Sobel Filter](digital_image_processing/filters/sobel_filter.py)
|
|
322 | 326 | * [Integer Partition](dynamic_programming/integer_partition.py)
|
323 | 327 | * [Iterating Through Submasks](dynamic_programming/iterating_through_submasks.py)
|
324 | 328 | * [Knapsack](dynamic_programming/knapsack.py)
|
| 329 | + * [Largest Divisible Subset](dynamic_programming/largest_divisible_subset.py) |
325 | 330 | * [Longest Common Subsequence](dynamic_programming/longest_common_subsequence.py)
|
326 | 331 | * [Longest Common Substring](dynamic_programming/longest_common_substring.py)
|
327 | 332 | * [Longest Increasing Subsequence](dynamic_programming/longest_increasing_subsequence.py)
|
|
363 | 368 | * [Ind Reactance](electronics/ind_reactance.py)
|
364 | 369 | * [Ohms Law](electronics/ohms_law.py)
|
365 | 370 | * [Real And Reactive Power](electronics/real_and_reactive_power.py)
|
| 371 | + * [Resistor Color Code](electronics/resistor_color_code.py) |
366 | 372 | * [Resistor Equivalence](electronics/resistor_equivalence.py)
|
367 | 373 | * [Resonant Frequency](electronics/resonant_frequency.py)
|
| 374 | + * [Wheatstone Bridge](electronics/wheatstone_bridge.py) |
368 | 375 |
|
369 | 376 | ## File Transfer
|
370 | 377 | * [Receive File](file_transfer/receive_file.py)
|
|
413 | 420 | * [Check Bipartite Graph Dfs](graphs/check_bipartite_graph_dfs.py)
|
414 | 421 | * [Check Cycle](graphs/check_cycle.py)
|
415 | 422 | * [Connected Components](graphs/connected_components.py)
|
| 423 | + * [Deep Clone Graph](graphs/deep_clone_graph.py) |
416 | 424 | * [Depth First Search](graphs/depth_first_search.py)
|
417 | 425 | * [Depth First Search 2](graphs/depth_first_search_2.py)
|
418 | 426 | * [Dijkstra](graphs/dijkstra.py)
|
|
460 | 468 | ## Greedy Methods
|
461 | 469 | * [Fractional Knapsack](greedy_methods/fractional_knapsack.py)
|
462 | 470 | * [Fractional Knapsack 2](greedy_methods/fractional_knapsack_2.py)
|
| 471 | + * [Gas Station](greedy_methods/gas_station.py) |
463 | 472 | * [Minimum Waiting Time](greedy_methods/minimum_waiting_time.py)
|
464 | 473 | * [Optimal Merge Pattern](greedy_methods/optimal_merge_pattern.py)
|
465 | 474 |
|
|
542 | 551 | * [Average Median](maths/average_median.py)
|
543 | 552 | * [Average Mode](maths/average_mode.py)
|
544 | 553 | * [Bailey Borwein Plouffe](maths/bailey_borwein_plouffe.py)
|
| 554 | + * [Base Neg2 Conversion](maths/base_neg2_conversion.py) |
545 | 555 | * [Basic Maths](maths/basic_maths.py)
|
546 | 556 | * [Bell Numbers](maths/bell_numbers.py)
|
547 | 557 | * [Binary Exp Mod](maths/binary_exp_mod.py)
|
|
657 | 667 | * [P Series](maths/series/p_series.py)
|
658 | 668 | * [Sieve Of Eratosthenes](maths/sieve_of_eratosthenes.py)
|
659 | 669 | * [Sigmoid](maths/sigmoid.py)
|
660 |
| - * [Sigmoid Linear Unit](maths/sigmoid_linear_unit.py) |
661 | 670 | * [Signum](maths/signum.py)
|
662 | 671 | * [Simpson Rule](maths/simpson_rule.py)
|
663 | 672 | * [Simultaneous Linear Equation Solver](maths/simultaneous_linear_equation_solver.py)
|
|
716 | 725 | * [Leaky Rectified Linear Unit](neural_network/activation_functions/leaky_rectified_linear_unit.py)
|
717 | 726 | * [Rectified Linear Unit](neural_network/activation_functions/rectified_linear_unit.py)
|
718 | 727 | * [Scaled Exponential Linear Unit](neural_network/activation_functions/scaled_exponential_linear_unit.py)
|
| 728 | + * [Sigmoid Linear Unit](neural_network/activation_functions/sigmoid_linear_unit.py) |
719 | 729 | * [Back Propagation Neural Network](neural_network/back_propagation_neural_network.py)
|
720 | 730 | * [Convolution Neural Network](neural_network/convolution_neural_network.py)
|
721 | 731 | * [Perceptron](neural_network/perceptron.py)
|
|
1155 | 1165 | * [Autocomplete Using Trie](strings/autocomplete_using_trie.py)
|
1156 | 1166 | * [Barcode Validator](strings/barcode_validator.py)
|
1157 | 1167 | * [Boyer Moore Search](strings/boyer_moore_search.py)
|
| 1168 | + * [Camel Case To Snake Case](strings/camel_case_to_snake_case.py) |
1158 | 1169 | * [Can String Be Rearranged As Palindrome](strings/can_string_be_rearranged_as_palindrome.py)
|
1159 | 1170 | * [Capitalize](strings/capitalize.py)
|
1160 | 1171 | * [Check Anagrams](strings/check_anagrams.py)
|
|
1180 | 1191 | * [Naive String Search](strings/naive_string_search.py)
|
1181 | 1192 | * [Ngram](strings/ngram.py)
|
1182 | 1193 | * [Palindrome](strings/palindrome.py)
|
| 1194 | + * [Pig Latin](strings/pig_latin.py) |
1183 | 1195 | * [Prefix Function](strings/prefix_function.py)
|
1184 | 1196 | * [Rabin Karp](strings/rabin_karp.py)
|
1185 | 1197 | * [Remove Duplicate](strings/remove_duplicate.py)
|
|
0 commit comments