|
421 | 421 | * [Lucas Lehmer Primality Test](https://github.com/TheAlgorithms/Python/blob/master/maths/lucas_lehmer_primality_test.py) |
422 | 422 | * [Lucas Series](https://github.com/TheAlgorithms/Python/blob/master/maths/lucas_series.py) |
423 | 423 | * [Matrix Exponentiation](https://github.com/TheAlgorithms/Python/blob/master/maths/matrix_exponentiation.py) |
| 424 | + * [Maximum Combination](https://github.com/TheAlgorithms/Python/blob/master/maths/maximum_combination.py) |
424 | 425 | * [Miller Rabin](https://github.com/TheAlgorithms/Python/blob/master/maths/miller_rabin.py) |
425 | 426 | * [Mobius Function](https://github.com/TheAlgorithms/Python/blob/master/maths/mobius_function.py) |
426 | 427 | * [Modular Exponential](https://github.com/TheAlgorithms/Python/blob/master/maths/modular_exponential.py) |
|
674 | 675 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_056/sol1.py) |
675 | 676 | * Problem 057 |
676 | 677 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_057/sol1.py) |
| 678 | + * Problem 058 |
| 679 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_058/sol1.py) |
677 | 680 | * Problem 062 |
678 | 681 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_062/sol1.py) |
679 | 682 | * Problem 063 |
|
699 | 702 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_080/sol1.py) |
700 | 703 | * Problem 081 |
701 | 704 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_081/sol1.py) |
| 705 | + * Problem 087 |
| 706 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_087/sol1.py) |
702 | 707 | * Problem 091 |
703 | 708 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_091/sol1.py) |
704 | 709 | * Problem 097 |
|
817 | 822 | * [Prefix Function](https://github.com/TheAlgorithms/Python/blob/master/strings/prefix_function.py) |
818 | 823 | * [Rabin Karp](https://github.com/TheAlgorithms/Python/blob/master/strings/rabin_karp.py) |
819 | 824 | * [Remove Duplicate](https://github.com/TheAlgorithms/Python/blob/master/strings/remove_duplicate.py) |
| 825 | + * [Reverse Letters](https://github.com/TheAlgorithms/Python/blob/master/strings/reverse_letters.py) |
820 | 826 | * [Reverse Words](https://github.com/TheAlgorithms/Python/blob/master/strings/reverse_words.py) |
821 | 827 | * [Split](https://github.com/TheAlgorithms/Python/blob/master/strings/split.py) |
822 | 828 | * [Swap Case](https://github.com/TheAlgorithms/Python/blob/master/strings/swap_case.py) |
|
0 commit comments