|
62 | 62 | * [Generate Parentheses Iterative](backtracking/generate_parentheses_iterative.py) |
63 | 63 | * [Hamiltonian Cycle](backtracking/hamiltonian_cycle.py) |
64 | 64 | * [Knight Tour](backtracking/knight_tour.py) |
| 65 | + * [M Coloring Problem](backtracking/m_coloring_problem.py) |
65 | 66 | * [Match Word Pattern](backtracking/match_word_pattern.py) |
66 | 67 | * [Minimax](backtracking/minimax.py) |
67 | 68 | * [N Queens](backtracking/n_queens.py) |
|
108 | 109 |
|
109 | 110 | ## [Blockchain](blockchain) |
110 | 111 | * [Diophantine Equation](blockchain/diophantine_equation.py) |
| 112 | + * [Merkle Tree](blockchain/merkle_tree.py) |
| 113 | + * [Simple Blockchain](blockchain/simple_blockchain.py) |
| 114 | + * [Simple Proof Of Work](blockchain/simple_proof_of_work.py) |
111 | 115 |
|
112 | 116 | ## [Boolean Algebra](boolean_algebra) |
113 | 117 | * [And Gate](boolean_algebra/and_gate.py) |
|
161 | 165 | * [Morse Code](ciphers/morse_code.py) |
162 | 166 | * [Onepad Cipher](ciphers/onepad_cipher.py) |
163 | 167 | * [Permutation Cipher](ciphers/permutation_cipher.py) |
164 | | - * [Printable ASCII Vigenere Cipher](ciphers/printable_ascii_vigenere_cipher.py) |
165 | 168 | * [Playfair Cipher](ciphers/playfair_cipher.py) |
166 | 169 | * [Polybius](ciphers/polybius.py) |
167 | 170 | * [Porta Cipher](ciphers/porta_cipher.py) |
| 171 | + * [Printable Ascii Vigenere Cipher](ciphers/printable_ascii_vigenere_cipher.py) |
168 | 172 | * [Rabin Miller](ciphers/rabin_miller.py) |
169 | 173 | * [Rail Fence Cipher](ciphers/rail_fence_cipher.py) |
170 | 174 | * [Rot13](ciphers/rot13.py) |
|
690 | 694 | * [Astar](machine_learning/astar.py) |
691 | 695 | * [Automatic Differentiation](machine_learning/automatic_differentiation.py) |
692 | 696 | * [Data Transformations](machine_learning/data_transformations.py) |
| 697 | + * [Dbscan](machine_learning/dbscan.py) |
693 | 698 | * [Decision Tree](machine_learning/decision_tree.py) |
694 | 699 | * [Dimensionality Reduction](machine_learning/dimensionality_reduction.py) |
695 | 700 | * [Federated Averaging](machine_learning/federated_averaging.py) |
|
713 | 718 | * [Loss Functions](machine_learning/loss_functions.py) |
714 | 719 | * Lstm |
715 | 720 | * [Lstm Prediction](machine_learning/lstm/lstm_prediction.py) |
| 721 | + * [Mean Shift](machine_learning/mean_shift.py) |
716 | 722 | * [Mfcc](machine_learning/mfcc.py) |
717 | 723 | * [Mini Batch Gradient Descent](machine_learning/mini_batch_gradient_descent.py) |
718 | 724 | * [Multilayer Perceptron Classifier](machine_learning/multilayer_perceptron_classifier.py) |
| 725 | + * [Naive Bayes Text Classification](machine_learning/naive_bayes_text_classification.py) |
719 | 726 | * [Ordinary Least Squares Regression](machine_learning/ordinary_least_squares_regression.py) |
720 | 727 | * [Polynomial Regression](machine_learning/polynomial_regression.py) |
721 | 728 | * [Principle Component Analysis](machine_learning/principle_component_analysis.py) |
722 | 729 | * [Q Learning](machine_learning/q_learning.py) |
723 | 730 | * [Random Forest Classifier](machine_learning/random_forest_classifier.py) |
724 | 731 | * [Random Forest Regressor](machine_learning/random_forest_regressor.py) |
| 732 | + * [Rmsprop](machine_learning/rmsprop.py) |
725 | 733 | * [Scoring Functions](machine_learning/scoring_functions.py) |
726 | 734 | * [Self Organizing Map](machine_learning/self_organizing_map.py) |
727 | 735 | * [Sequential Minimum Optimization](machine_learning/sequential_minimum_optimization.py) |
|
738 | 746 | * [Arc Length](maths/arc_length.py) |
739 | 747 | * [Area](maths/area.py) |
740 | 748 | * [Area Under Curve](maths/area_under_curve.py) |
| 749 | + * [Autocorrelation](maths/autocorrelation.py) |
741 | 750 | * [Average Absolute Deviation](maths/average_absolute_deviation.py) |
742 | 751 | * [Average Mean](maths/average_mean.py) |
743 | 752 | * [Average Median](maths/average_median.py) |
|
783 | 792 | * [Fibonacci](maths/fibonacci.py) |
784 | 793 | * [Find Max](maths/find_max.py) |
785 | 794 | * [Find Min](maths/find_min.py) |
| 795 | + * [First Fundamental Form](maths/first_fundamental_form.py) |
786 | 796 | * [Floor](maths/floor.py) |
787 | 797 | * [Gamma](maths/gamma.py) |
788 | 798 | * [Gaussian](maths/gaussian.py) |
|
845 | 855 | * [Square Root](maths/numerical_analysis/square_root.py) |
846 | 856 | * [Weierstrass Method](maths/numerical_analysis/weierstrass_method.py) |
847 | 857 | * [Odd Sieve](maths/odd_sieve.py) |
| 858 | + * [Padovan Sequence](maths/padovan_sequence.py) |
848 | 859 | * [Pell Number](maths/pell_number.py) |
849 | 860 | * [Perfect Cube](maths/perfect_cube.py) |
850 | 861 | * [Perfect Number](maths/perfect_number.py) |
|
874 | 885 | * [Reverse Factorial Recursive](maths/reverse_factorial_recursive.py) |
875 | 886 | * [Segmented Sieve](maths/segmented_sieve.py) |
876 | 887 | * Series |
| 888 | + * [Alternate Harmonic Series](maths/series/alternate_harmonic_series.py) |
| 889 | + * [Alternating Harmonic Series](maths/series/alternating_harmonic_series.py) |
877 | 890 | * [Arithmetic](maths/series/arithmetic.py) |
878 | 891 | * [Geometric](maths/series/geometric.py) |
879 | 892 | * [Geometric Series](maths/series/geometric_series.py) |
|
913 | 926 | * [Polygonal Numbers](maths/special_numbers/polygonal_numbers.py) |
914 | 927 | * [Pronic Number](maths/special_numbers/pronic_number.py) |
915 | 928 | * [Proth Number](maths/special_numbers/proth_number.py) |
| 929 | + * [Spy Number](maths/special_numbers/spy_number.py) |
916 | 930 | * [Triangular Numbers](maths/special_numbers/triangular_numbers.py) |
917 | 931 | * [Trimorphic Number](maths/special_numbers/trimorphic_number.py) |
918 | 932 | * [Ugly Numbers](maths/special_numbers/ugly_numbers.py) |
|
0 commit comments