|
100 | 100 | * [Decimal To Hexadecimal](https://github.com/TheAlgorithms/Python/blob/master/conversions/decimal_to_hexadecimal.py)
|
101 | 101 | * [Decimal To Octal](https://github.com/TheAlgorithms/Python/blob/master/conversions/decimal_to_octal.py)
|
102 | 102 | * [Hexadecimal To Decimal](https://github.com/TheAlgorithms/Python/blob/master/conversions/hexadecimal_to_decimal.py)
|
| 103 | + * [Molecular Chemistry](https://github.com/TheAlgorithms/Python/blob/master/conversions/molecular_chemistry.py) |
103 | 104 | * [Prefix Conversions](https://github.com/TheAlgorithms/Python/blob/master/conversions/prefix_conversions.py)
|
104 | 105 | * [Roman To Integer](https://github.com/TheAlgorithms/Python/blob/master/conversions/roman_to_integer.py)
|
105 | 106 | * [Temperature Conversions](https://github.com/TheAlgorithms/Python/blob/master/conversions/temperature_conversions.py)
|
|
205 | 206 | * [Heaps Algorithm](https://github.com/TheAlgorithms/Python/blob/master/divide_and_conquer/heaps_algorithm.py)
|
206 | 207 | * [Heaps Algorithm Iterative](https://github.com/TheAlgorithms/Python/blob/master/divide_and_conquer/heaps_algorithm_iterative.py)
|
207 | 208 | * [Inversions](https://github.com/TheAlgorithms/Python/blob/master/divide_and_conquer/inversions.py)
|
| 209 | + * [Kth Order Statistic](https://github.com/TheAlgorithms/Python/blob/master/divide_and_conquer/kth_order_statistic.py) |
208 | 210 | * [Max Subarray Sum](https://github.com/TheAlgorithms/Python/blob/master/divide_and_conquer/max_subarray_sum.py)
|
209 | 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) |
210 | 213 | * [Power](https://github.com/TheAlgorithms/Python/blob/master/divide_and_conquer/power.py)
|
211 | 214 | * [Strassen Matrix Multiplication](https://github.com/TheAlgorithms/Python/blob/master/divide_and_conquer/strassen_matrix_multiplication.py)
|
212 | 215 |
|
|
361 | 364 | * [Random Forest Regressor](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/random_forest_regressor.py)
|
362 | 365 | * [Scoring Functions](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/scoring_functions.py)
|
363 | 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) |
364 | 368 | * [Support Vector Machines](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/support_vector_machines.py)
|
365 | 369 | * [Word Frequency Functions](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/word_frequency_functions.py)
|
366 | 370 |
|
|
389 | 393 | * [Chudnovsky Algorithm](https://github.com/TheAlgorithms/Python/blob/master/maths/chudnovsky_algorithm.py)
|
390 | 394 | * [Collatz Sequence](https://github.com/TheAlgorithms/Python/blob/master/maths/collatz_sequence.py)
|
391 | 395 | * [Combinations](https://github.com/TheAlgorithms/Python/blob/master/maths/combinations.py)
|
| 396 | + * [Decimal Isolate](https://github.com/TheAlgorithms/Python/blob/master/maths/decimal_isolate.py) |
392 | 397 | * [Entropy](https://github.com/TheAlgorithms/Python/blob/master/maths/entropy.py)
|
393 | 398 | * [Eulers Totient](https://github.com/TheAlgorithms/Python/blob/master/maths/eulers_totient.py)
|
394 | 399 | * [Explicit Euler](https://github.com/TheAlgorithms/Python/blob/master/maths/explicit_euler.py)
|
|
452 | 457 | * [Harmonic Series](https://github.com/TheAlgorithms/Python/blob/master/maths/series/harmonic_series.py)
|
453 | 458 | * [P Series](https://github.com/TheAlgorithms/Python/blob/master/maths/series/p_series.py)
|
454 | 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) |
455 | 461 | * [Simpson Rule](https://github.com/TheAlgorithms/Python/blob/master/maths/simpson_rule.py)
|
456 | 462 | * [Softmax](https://github.com/TheAlgorithms/Python/blob/master/maths/softmax.py)
|
457 | 463 | * [Square Root](https://github.com/TheAlgorithms/Python/blob/master/maths/square_root.py)
|
|
492 | 498 | * [Autocomplete Using Trie](https://github.com/TheAlgorithms/Python/blob/master/other/autocomplete_using_trie.py)
|
493 | 499 | * [Binary Exponentiation](https://github.com/TheAlgorithms/Python/blob/master/other/binary_exponentiation.py)
|
494 | 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) |
495 | 502 | * [Detecting English Programmatically](https://github.com/TheAlgorithms/Python/blob/master/other/detecting_english_programmatically.py)
|
496 | 503 | * [Dijkstra Bankers Algorithm](https://github.com/TheAlgorithms/Python/blob/master/other/dijkstra_bankers_algorithm.py)
|
497 | 504 | * [Doomsday](https://github.com/TheAlgorithms/Python/blob/master/other/doomsday.py)
|
|
520 | 527 | * [Sierpinski Triangle](https://github.com/TheAlgorithms/Python/blob/master/other/sierpinski_triangle.py)
|
521 | 528 | * [Tower Of Hanoi](https://github.com/TheAlgorithms/Python/blob/master/other/tower_of_hanoi.py)
|
522 | 529 | * [Triplet Sum](https://github.com/TheAlgorithms/Python/blob/master/other/triplet_sum.py)
|
| 530 | + * [Two Pointer](https://github.com/TheAlgorithms/Python/blob/master/other/two_pointer.py) |
523 | 531 | * [Two Sum](https://github.com/TheAlgorithms/Python/blob/master/other/two_sum.py)
|
524 | 532 | * [Word Patterns](https://github.com/TheAlgorithms/Python/blob/master/other/word_patterns.py)
|
525 | 533 |
|
|
659 | 667 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_048/sol1.py)
|
660 | 668 | * Problem 049
|
661 | 669 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_049/sol1.py)
|
| 670 | + * Problem 050 |
| 671 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_050/sol1.py) |
662 | 672 | * Problem 051
|
663 | 673 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_051/sol1.py)
|
664 | 674 | * Problem 052
|
|
674 | 684 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_056/sol1.py)
|
675 | 685 | * Problem 057
|
676 | 686 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_057/sol1.py)
|
| 687 | + * Problem 058 |
| 688 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_058/sol1.py) |
677 | 689 | * Problem 062
|
678 | 690 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_062/sol1.py)
|
679 | 691 | * Problem 063
|
680 | 692 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_063/sol1.py)
|
| 693 | + * Problem 064 |
| 694 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_064/sol1.py) |
681 | 695 | * Problem 065
|
682 | 696 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_065/sol1.py)
|
683 | 697 | * Problem 067
|
684 | 698 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_067/sol1.py)
|
685 | 699 | * Problem 069
|
686 | 700 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_069/sol1.py)
|
| 701 | + * Problem 070 |
| 702 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_070/sol1.py) |
687 | 703 | * Problem 071
|
688 | 704 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_071/sol1.py)
|
689 | 705 | * Problem 072
|
690 | 706 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_072/sol1.py)
|
691 | 707 | * [Sol2](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_072/sol2.py)
|
692 | 708 | * Problem 074
|
693 | 709 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_074/sol1.py)
|
| 710 | + * [Sol2](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_074/sol2.py) |
694 | 711 | * Problem 075
|
695 | 712 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_075/sol1.py)
|
696 | 713 | * Problem 076
|
|
699 | 716 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_080/sol1.py)
|
700 | 717 | * Problem 081
|
701 | 718 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_081/sol1.py)
|
| 719 | + * Problem 087 |
| 720 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_087/sol1.py) |
702 | 721 | * Problem 091
|
703 | 722 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_091/sol1.py)
|
704 | 723 | * Problem 097
|
|
713 | 732 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_119/sol1.py)
|
714 | 733 | * Problem 120
|
715 | 734 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_120/sol1.py)
|
| 735 | + * Problem 123 |
| 736 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_123/sol1.py) |
716 | 737 | * Problem 125
|
717 | 738 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_125/sol1.py)
|
718 | 739 | * Problem 173
|
|
721 | 742 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_174/sol1.py)
|
722 | 743 | * Problem 191
|
723 | 744 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_191/sol1.py)
|
| 745 | + * Problem 203 |
| 746 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_203/sol1.py) |
| 747 | + * Problem 206 |
| 748 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_206/sol1.py) |
| 749 | + * Problem 207 |
| 750 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_207/sol1.py) |
724 | 751 | * Problem 234
|
725 | 752 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_234/sol1.py)
|
| 753 | + * Problem 301 |
| 754 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_301/sol1.py) |
726 | 755 | * Problem 551
|
727 | 756 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_551/sol1.py)
|
728 | 757 |
|
|
731 | 760 | * [Half Adder](https://github.com/TheAlgorithms/Python/blob/master/quantum/half_adder.py)
|
732 | 761 | * [Not Gate](https://github.com/TheAlgorithms/Python/blob/master/quantum/not_gate.py)
|
733 | 762 | * [Quantum Entanglement](https://github.com/TheAlgorithms/Python/blob/master/quantum/quantum_entanglement.py)
|
| 763 | + * [Ripple Adder Classic](https://github.com/TheAlgorithms/Python/blob/master/quantum/ripple_adder_classic.py) |
734 | 764 | * [Single Qubit Measure](https://github.com/TheAlgorithms/Python/blob/master/quantum/single_qubit_measure.py)
|
735 | 765 |
|
736 | 766 | ## Scheduling
|
|
815 | 845 | * [Prefix Function](https://github.com/TheAlgorithms/Python/blob/master/strings/prefix_function.py)
|
816 | 846 | * [Rabin Karp](https://github.com/TheAlgorithms/Python/blob/master/strings/rabin_karp.py)
|
817 | 847 | * [Remove Duplicate](https://github.com/TheAlgorithms/Python/blob/master/strings/remove_duplicate.py)
|
| 848 | + * [Reverse Letters](https://github.com/TheAlgorithms/Python/blob/master/strings/reverse_letters.py) |
818 | 849 | * [Reverse Words](https://github.com/TheAlgorithms/Python/blob/master/strings/reverse_words.py)
|
819 | 850 | * [Split](https://github.com/TheAlgorithms/Python/blob/master/strings/split.py)
|
820 | 851 | * [Swap Case](https://github.com/TheAlgorithms/Python/blob/master/strings/swap_case.py)
|
|
829 | 860 | * [Co2 Emission](https://github.com/TheAlgorithms/Python/blob/master/web_programming/co2_emission.py)
|
830 | 861 | * [Covid Stats Via Xpath](https://github.com/TheAlgorithms/Python/blob/master/web_programming/covid_stats_via_xpath.py)
|
831 | 862 | * [Crawl Google Results](https://github.com/TheAlgorithms/Python/blob/master/web_programming/crawl_google_results.py)
|
| 863 | + * [Crawl Google Scholar Citation](https://github.com/TheAlgorithms/Python/blob/master/web_programming/crawl_google_scholar_citation.py) |
832 | 864 | * [Current Stock Price](https://github.com/TheAlgorithms/Python/blob/master/web_programming/current_stock_price.py)
|
833 | 865 | * [Current Weather](https://github.com/TheAlgorithms/Python/blob/master/web_programming/current_weather.py)
|
834 | 866 | * [Daily Horoscope](https://github.com/TheAlgorithms/Python/blob/master/web_programming/daily_horoscope.py)
|
|
0 commit comments