|
54 | 54 | * [Largest Pow Of Two Le Num](bit_manipulation/largest_pow_of_two_le_num.py)
|
55 | 55 | * [Missing Number](bit_manipulation/missing_number.py)
|
56 | 56 | * [Numbers Different Signs](bit_manipulation/numbers_different_signs.py)
|
| 57 | + * [Power Of 4](bit_manipulation/power_of_4.py) |
57 | 58 | * [Reverse Bits](bit_manipulation/reverse_bits.py)
|
58 | 59 | * [Single Bit Manipulation Operations](bit_manipulation/single_bit_manipulation_operations.py)
|
59 | 60 |
|
60 | 61 | ## Blockchain
|
61 |
| - * [Chinese Remainder Theorem](blockchain/chinese_remainder_theorem.py) |
62 | 62 | * [Diophantine Equation](blockchain/diophantine_equation.py)
|
63 |
| - * [Modular Division](blockchain/modular_division.py) |
64 | 63 |
|
65 | 64 | ## Boolean Algebra
|
66 | 65 | * [And Gate](boolean_algebra/and_gate.py)
|
|
101 | 100 | * [Diffie Hellman](ciphers/diffie_hellman.py)
|
102 | 101 | * [Elgamal Key Generator](ciphers/elgamal_key_generator.py)
|
103 | 102 | * [Enigma Machine2](ciphers/enigma_machine2.py)
|
| 103 | + * [Fractionated Morse Cipher](ciphers/fractionated_morse_cipher.py) |
104 | 104 | * [Hill Cipher](ciphers/hill_cipher.py)
|
105 | 105 | * [Mixed Keyword Cypher](ciphers/mixed_keyword_cypher.py)
|
106 | 106 | * [Mono Alphabetic Ciphers](ciphers/mono_alphabetic_ciphers.py)
|
107 | 107 | * [Morse Code](ciphers/morse_code.py)
|
108 | 108 | * [Onepad Cipher](ciphers/onepad_cipher.py)
|
| 109 | + * [Permutation Cipher](ciphers/permutation_cipher.py) |
109 | 110 | * [Playfair Cipher](ciphers/playfair_cipher.py)
|
110 | 111 | * [Polybius](ciphers/polybius.py)
|
111 | 112 | * [Porta Cipher](ciphers/porta_cipher.py)
|
|
172 | 173 |
|
173 | 174 | ## Data Structures
|
174 | 175 | * Arrays
|
| 176 | + * [Equilibrium Index In Array](data_structures/arrays/equilibrium_index_in_array.py) |
175 | 177 | * [Median Two Array](data_structures/arrays/median_two_array.py)
|
176 | 178 | * [Permutations](data_structures/arrays/permutations.py)
|
177 | 179 | * [Prefix Sum](data_structures/arrays/prefix_sum.py)
|
|
352 | 354 | * [Smith Waterman](dynamic_programming/smith_waterman.py)
|
353 | 355 | * [Subset Generation](dynamic_programming/subset_generation.py)
|
354 | 356 | * [Sum Of Subset](dynamic_programming/sum_of_subset.py)
|
| 357 | + * [Trapped Water](dynamic_programming/trapped_water.py) |
355 | 358 | * [Tribonacci](dynamic_programming/tribonacci.py)
|
356 | 359 | * [Viterbi](dynamic_programming/viterbi.py)
|
357 | 360 | * [Word Break](dynamic_programming/word_break.py)
|
|
360 | 363 | * [Apparent Power](electronics/apparent_power.py)
|
361 | 364 | * [Builtin Voltage](electronics/builtin_voltage.py)
|
362 | 365 | * [Carrier Concentration](electronics/carrier_concentration.py)
|
| 366 | + * [Charging Capacitor](electronics/charging_capacitor.py) |
363 | 367 | * [Circular Convolution](electronics/circular_convolution.py)
|
364 | 368 | * [Coulombs Law](electronics/coulombs_law.py)
|
365 | 369 | * [Electric Conductivity](electronics/electric_conductivity.py)
|
|
466 | 470 | * [Test Min Spanning Tree Prim](graphs/tests/test_min_spanning_tree_prim.py)
|
467 | 471 |
|
468 | 472 | ## Greedy Methods
|
| 473 | + * [Best Time To Buy And Sell Stock](greedy_methods/best_time_to_buy_and_sell_stock.py) |
| 474 | + * [Fractional Cover Problem](greedy_methods/fractional_cover_problem.py) |
469 | 475 | * [Fractional Knapsack](greedy_methods/fractional_knapsack.py)
|
470 | 476 | * [Fractional Knapsack 2](greedy_methods/fractional_knapsack_2.py)
|
471 | 477 | * [Gas Station](greedy_methods/gas_station.py)
|
|
524 | 530 | * Local Weighted Learning
|
525 | 531 | * [Local Weighted Learning](machine_learning/local_weighted_learning/local_weighted_learning.py)
|
526 | 532 | * [Logistic Regression](machine_learning/logistic_regression.py)
|
| 533 | + * Loss Functions |
| 534 | + * [Binary Cross Entropy](machine_learning/loss_functions/binary_cross_entropy.py) |
| 535 | + * [Huber Loss](machine_learning/loss_functions/huber_loss.py) |
| 536 | + * [Mean Squared Error](machine_learning/loss_functions/mean_squared_error.py) |
527 | 537 | * [Mfcc](machine_learning/mfcc.py)
|
528 | 538 | * [Multilayer Perceptron Classifier](machine_learning/multilayer_perceptron_classifier.py)
|
529 | 539 | * [Polynomial Regression](machine_learning/polynomial_regression.py)
|
|
564 | 574 | * [Carmichael Number](maths/carmichael_number.py)
|
565 | 575 | * [Catalan Number](maths/catalan_number.py)
|
566 | 576 | * [Ceil](maths/ceil.py)
|
| 577 | + * [Chebyshev Distance](maths/chebyshev_distance.py) |
567 | 578 | * [Check Polygon](maths/check_polygon.py)
|
| 579 | + * [Chinese Remainder Theorem](maths/chinese_remainder_theorem.py) |
568 | 580 | * [Chudnovsky Algorithm](maths/chudnovsky_algorithm.py)
|
569 | 581 | * [Collatz Sequence](maths/collatz_sequence.py)
|
570 | 582 | * [Combinations](maths/combinations.py)
|
|
591 | 603 | * [Gaussian](maths/gaussian.py)
|
592 | 604 | * [Gaussian Error Linear Unit](maths/gaussian_error_linear_unit.py)
|
593 | 605 | * [Gcd Of N Numbers](maths/gcd_of_n_numbers.py)
|
| 606 | + * [Germain Primes](maths/germain_primes.py) |
594 | 607 | * [Greatest Common Divisor](maths/greatest_common_divisor.py)
|
595 | 608 | * [Greedy Coin Change](maths/greedy_coin_change.py)
|
596 | 609 | * [Hamming Numbers](maths/hamming_numbers.py)
|
|
618 | 631 | * [Matrix Exponentiation](maths/matrix_exponentiation.py)
|
619 | 632 | * [Max Sum Sliding Window](maths/max_sum_sliding_window.py)
|
620 | 633 | * [Median Of Two Arrays](maths/median_of_two_arrays.py)
|
| 634 | + * [Minkowski Distance](maths/minkowski_distance.py) |
621 | 635 | * [Mobius Function](maths/mobius_function.py)
|
| 636 | + * [Modular Division](maths/modular_division.py) |
622 | 637 | * [Modular Exponential](maths/modular_exponential.py)
|
623 | 638 | * [Monte Carlo](maths/monte_carlo.py)
|
624 | 639 | * [Monte Carlo Dice](maths/monte_carlo_dice.py)
|
|
720 | 735 | ## Neural Network
|
721 | 736 | * [2 Hidden Layers Neural Network](neural_network/2_hidden_layers_neural_network.py)
|
722 | 737 | * Activation Functions
|
| 738 | + * [Binary Step](neural_network/activation_functions/binary_step.py) |
723 | 739 | * [Exponential Linear Unit](neural_network/activation_functions/exponential_linear_unit.py)
|
724 | 740 | * [Leaky Rectified Linear Unit](neural_network/activation_functions/leaky_rectified_linear_unit.py)
|
725 | 741 | * [Mish](neural_network/activation_functions/mish.py)
|
726 | 742 | * [Rectified Linear Unit](neural_network/activation_functions/rectified_linear_unit.py)
|
727 | 743 | * [Scaled Exponential Linear Unit](neural_network/activation_functions/scaled_exponential_linear_unit.py)
|
728 | 744 | * [Sigmoid Linear Unit](neural_network/activation_functions/sigmoid_linear_unit.py)
|
| 745 | + * [Soboleva Modified Hyperbolic Tangent](neural_network/activation_functions/soboleva_modified_hyperbolic_tangent.py) |
| 746 | + * [Softplus](neural_network/activation_functions/softplus.py) |
| 747 | + * [Squareplus](neural_network/activation_functions/squareplus.py) |
729 | 748 | * [Back Propagation Neural Network](neural_network/back_propagation_neural_network.py)
|
730 | 749 | * [Convolution Neural Network](neural_network/convolution_neural_network.py)
|
731 | 750 | * [Perceptron](neural_network/perceptron.py)
|
|
779 | 798 | * [Newtons Second Law Of Motion](physics/newtons_second_law_of_motion.py)
|
780 | 799 | * [Photoelectric Effect](physics/photoelectric_effect.py)
|
781 | 800 | * [Potential Energy](physics/potential_energy.py)
|
| 801 | + * [Reynolds Number](physics/reynolds_number.py) |
782 | 802 | * [Rms Speed Of Molecule](physics/rms_speed_of_molecule.py)
|
783 | 803 | * [Shear Stress](physics/shear_stress.py)
|
784 | 804 | * [Speed Of Sound](physics/speed_of_sound.py)
|
|
1101 | 1121 | * [Interpolation Search](searches/interpolation_search.py)
|
1102 | 1122 | * [Jump Search](searches/jump_search.py)
|
1103 | 1123 | * [Linear Search](searches/linear_search.py)
|
| 1124 | + * [Median Of Medians](searches/median_of_medians.py) |
1104 | 1125 | * [Quick Select](searches/quick_select.py)
|
1105 | 1126 | * [Sentinel Linear Search](searches/sentinel_linear_search.py)
|
1106 | 1127 | * [Simple Binary Search](searches/simple_binary_search.py)
|
|
1201 | 1222 | * [Snake Case To Camel Pascal Case](strings/snake_case_to_camel_pascal_case.py)
|
1202 | 1223 | * [Split](strings/split.py)
|
1203 | 1224 | * [String Switch Case](strings/string_switch_case.py)
|
| 1225 | + * [Strip](strings/strip.py) |
1204 | 1226 | * [Text Justification](strings/text_justification.py)
|
1205 | 1227 | * [Top K Frequent Words](strings/top_k_frequent_words.py)
|
1206 | 1228 | * [Upper](strings/upper.py)
|
|
0 commit comments