|
209 | 209 | * [Kth Order Statistic](https://github.com/TheAlgorithms/Python/blob/master/divide_and_conquer/kth_order_statistic.py)
|
210 | 210 | * [Max Subarray Sum](https://github.com/TheAlgorithms/Python/blob/master/divide_and_conquer/max_subarray_sum.py)
|
211 | 211 | * [Mergesort](https://github.com/TheAlgorithms/Python/blob/master/divide_and_conquer/mergesort.py)
|
| 212 | + * [Peak](https://github.com/TheAlgorithms/Python/blob/master/divide_and_conquer/peak.py) |
212 | 213 | * [Power](https://github.com/TheAlgorithms/Python/blob/master/divide_and_conquer/power.py)
|
213 | 214 | * [Strassen Matrix Multiplication](https://github.com/TheAlgorithms/Python/blob/master/divide_and_conquer/strassen_matrix_multiplication.py)
|
214 | 215 |
|
|
363 | 364 | * [Random Forest Regressor](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/random_forest_regressor.py)
|
364 | 365 | * [Scoring Functions](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/scoring_functions.py)
|
365 | 366 | * [Sequential Minimum Optimization](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/sequential_minimum_optimization.py)
|
| 367 | + * [Similarity Search](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/similarity_search.py) |
366 | 368 | * [Support Vector Machines](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/support_vector_machines.py)
|
367 | 369 | * [Word Frequency Functions](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/word_frequency_functions.py)
|
368 | 370 |
|
|
455 | 457 | * [Harmonic Series](https://github.com/TheAlgorithms/Python/blob/master/maths/series/harmonic_series.py)
|
456 | 458 | * [P Series](https://github.com/TheAlgorithms/Python/blob/master/maths/series/p_series.py)
|
457 | 459 | * [Sieve Of Eratosthenes](https://github.com/TheAlgorithms/Python/blob/master/maths/sieve_of_eratosthenes.py)
|
| 460 | + * [Sigmoid](https://github.com/TheAlgorithms/Python/blob/master/maths/sigmoid.py) |
458 | 461 | * [Simpson Rule](https://github.com/TheAlgorithms/Python/blob/master/maths/simpson_rule.py)
|
459 | 462 | * [Softmax](https://github.com/TheAlgorithms/Python/blob/master/maths/softmax.py)
|
460 | 463 | * [Square Root](https://github.com/TheAlgorithms/Python/blob/master/maths/square_root.py)
|
|
495 | 498 | * [Autocomplete Using Trie](https://github.com/TheAlgorithms/Python/blob/master/other/autocomplete_using_trie.py)
|
496 | 499 | * [Binary Exponentiation](https://github.com/TheAlgorithms/Python/blob/master/other/binary_exponentiation.py)
|
497 | 500 | * [Binary Exponentiation 2](https://github.com/TheAlgorithms/Python/blob/master/other/binary_exponentiation_2.py)
|
| 501 | + * [Davis–Putnam–Logemann–Loveland](https://github.com/TheAlgorithms/Python/blob/master/other/davis–putnam–logemann–loveland.py) |
498 | 502 | * [Detecting English Programmatically](https://github.com/TheAlgorithms/Python/blob/master/other/detecting_english_programmatically.py)
|
499 | 503 | * [Dijkstra Bankers Algorithm](https://github.com/TheAlgorithms/Python/blob/master/other/dijkstra_bankers_algorithm.py)
|
500 | 504 | * [Doomsday](https://github.com/TheAlgorithms/Python/blob/master/other/doomsday.py)
|
|
662 | 666 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_048/sol1.py)
|
663 | 667 | * Problem 049
|
664 | 668 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_049/sol1.py)
|
| 669 | + * Problem 050 |
| 670 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_050/sol1.py) |
665 | 671 | * Problem 051
|
666 | 672 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_051/sol1.py)
|
667 | 673 | * Problem 052
|
|
723 | 729 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_119/sol1.py)
|
724 | 730 | * Problem 120
|
725 | 731 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_120/sol1.py)
|
| 732 | + * Problem 123 |
| 733 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_123/sol1.py) |
726 | 734 | * Problem 125
|
727 | 735 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_125/sol1.py)
|
728 | 736 | * Problem 173
|
|
749 | 757 | * [Half Adder](https://github.com/TheAlgorithms/Python/blob/master/quantum/half_adder.py)
|
750 | 758 | * [Not Gate](https://github.com/TheAlgorithms/Python/blob/master/quantum/not_gate.py)
|
751 | 759 | * [Quantum Entanglement](https://github.com/TheAlgorithms/Python/blob/master/quantum/quantum_entanglement.py)
|
| 760 | + * [Ripple Adder Classic](https://github.com/TheAlgorithms/Python/blob/master/quantum/ripple_adder_classic.py) |
752 | 761 | * [Single Qubit Measure](https://github.com/TheAlgorithms/Python/blob/master/quantum/single_qubit_measure.py)
|
753 | 762 |
|
754 | 763 | ## Scheduling
|
|
848 | 857 | * [Co2 Emission](https://github.com/TheAlgorithms/Python/blob/master/web_programming/co2_emission.py)
|
849 | 858 | * [Covid Stats Via Xpath](https://github.com/TheAlgorithms/Python/blob/master/web_programming/covid_stats_via_xpath.py)
|
850 | 859 | * [Crawl Google Results](https://github.com/TheAlgorithms/Python/blob/master/web_programming/crawl_google_results.py)
|
| 860 | + * [Crawl Google Scholar Citation](https://github.com/TheAlgorithms/Python/blob/master/web_programming/crawl_google_scholar_citation.py) |
851 | 861 | * [Current Stock Price](https://github.com/TheAlgorithms/Python/blob/master/web_programming/current_stock_price.py)
|
852 | 862 | * [Current Weather](https://github.com/TheAlgorithms/Python/blob/master/web_programming/current_weather.py)
|
853 | 863 | * [Daily Horoscope](https://github.com/TheAlgorithms/Python/blob/master/web_programming/daily_horoscope.py)
|
|
0 commit comments