|
75 | 75 | * [Morse Code](https://github.com/TheAlgorithms/Python/blob/master/ciphers/morse_code.py)
|
76 | 76 | * [Onepad Cipher](https://github.com/TheAlgorithms/Python/blob/master/ciphers/onepad_cipher.py)
|
77 | 77 | * [Playfair Cipher](https://github.com/TheAlgorithms/Python/blob/master/ciphers/playfair_cipher.py)
|
| 78 | + * [Polybius](https://github.com/TheAlgorithms/Python/blob/master/ciphers/polybius.py) |
78 | 79 | * [Porta Cipher](https://github.com/TheAlgorithms/Python/blob/master/ciphers/porta_cipher.py)
|
79 | 80 | * [Rabin Miller](https://github.com/TheAlgorithms/Python/blob/master/ciphers/rabin_miller.py)
|
80 | 81 | * [Rail Fence Cipher](https://github.com/TheAlgorithms/Python/blob/master/ciphers/rail_fence_cipher.py)
|
|
453 | 454 | * [Eulers Totient](https://github.com/TheAlgorithms/Python/blob/master/maths/eulers_totient.py)
|
454 | 455 | * [Extended Euclidean Algorithm](https://github.com/TheAlgorithms/Python/blob/master/maths/extended_euclidean_algorithm.py)
|
455 | 456 | * [Factorial Iterative](https://github.com/TheAlgorithms/Python/blob/master/maths/factorial_iterative.py)
|
456 |
| - * [Factorial Python](https://github.com/TheAlgorithms/Python/blob/master/maths/factorial_python.py) |
457 | 457 | * [Factorial Recursive](https://github.com/TheAlgorithms/Python/blob/master/maths/factorial_recursive.py)
|
458 | 458 | * [Factors](https://github.com/TheAlgorithms/Python/blob/master/maths/factors.py)
|
459 | 459 | * [Fermat Little Theorem](https://github.com/TheAlgorithms/Python/blob/master/maths/fermat_little_theorem.py)
|
|
565 | 565 |
|
566 | 566 | ## Other
|
567 | 567 | * [Activity Selection](https://github.com/TheAlgorithms/Python/blob/master/other/activity_selection.py)
|
| 568 | + * [Check Strong Password](https://github.com/TheAlgorithms/Python/blob/master/other/check_strong_password.py) |
568 | 569 | * [Date To Weekday](https://github.com/TheAlgorithms/Python/blob/master/other/date_to_weekday.py)
|
569 | 570 | * [Davisb Putnamb Logemannb Loveland](https://github.com/TheAlgorithms/Python/blob/master/other/davisb_putnamb_logemannb_loveland.py)
|
570 | 571 | * [Dijkstra Bankers Algorithm](https://github.com/TheAlgorithms/Python/blob/master/other/dijkstra_bankers_algorithm.py)
|
|
952 | 953 | * [Reverse Words](https://github.com/TheAlgorithms/Python/blob/master/strings/reverse_words.py)
|
953 | 954 | * [Split](https://github.com/TheAlgorithms/Python/blob/master/strings/split.py)
|
954 | 955 | * [Upper](https://github.com/TheAlgorithms/Python/blob/master/strings/upper.py)
|
| 956 | + * [Wildcard Pattern Matching](https://github.com/TheAlgorithms/Python/blob/master/strings/wildcard_pattern_matching.py) |
955 | 957 | * [Word Occurrence](https://github.com/TheAlgorithms/Python/blob/master/strings/word_occurrence.py)
|
956 | 958 | * [Word Patterns](https://github.com/TheAlgorithms/Python/blob/master/strings/word_patterns.py)
|
957 | 959 | * [Z Function](https://github.com/TheAlgorithms/Python/blob/master/strings/z_function.py)
|
|
0 commit comments