|
39 | 39 | * [Binary Xor Operator](https://github.com/TheAlgorithms/Python/blob/master/bit_manipulation/binary_xor_operator.py)
|
40 | 40 | * [Count 1S Brian Kernighan Method](https://github.com/TheAlgorithms/Python/blob/master/bit_manipulation/count_1s_brian_kernighan_method.py)
|
41 | 41 | * [Count Number Of One Bits](https://github.com/TheAlgorithms/Python/blob/master/bit_manipulation/count_number_of_one_bits.py)
|
| 42 | + * [Gray Code Sequence](https://github.com/TheAlgorithms/Python/blob/master/bit_manipulation/gray_code_sequence.py) |
42 | 43 | * [Reverse Bits](https://github.com/TheAlgorithms/Python/blob/master/bit_manipulation/reverse_bits.py)
|
43 | 44 | * [Single Bit Manipulation Operations](https://github.com/TheAlgorithms/Python/blob/master/bit_manipulation/single_bit_manipulation_operations.py)
|
44 | 45 |
|
|
63 | 64 | * [Baconian Cipher](https://github.com/TheAlgorithms/Python/blob/master/ciphers/baconian_cipher.py)
|
64 | 65 | * [Base16](https://github.com/TheAlgorithms/Python/blob/master/ciphers/base16.py)
|
65 | 66 | * [Base32](https://github.com/TheAlgorithms/Python/blob/master/ciphers/base32.py)
|
66 |
| - * [Base64 Encoding](https://github.com/TheAlgorithms/Python/blob/master/ciphers/base64_encoding.py) |
| 67 | + * [Base64](https://github.com/TheAlgorithms/Python/blob/master/ciphers/base64.py) |
67 | 68 | * [Base85](https://github.com/TheAlgorithms/Python/blob/master/ciphers/base85.py)
|
68 | 69 | * [Beaufort Cipher](https://github.com/TheAlgorithms/Python/blob/master/ciphers/beaufort_cipher.py)
|
69 | 70 | * [Bifid](https://github.com/TheAlgorithms/Python/blob/master/ciphers/bifid.py)
|
|
219 | 220 | * Filters
|
220 | 221 | * [Bilateral Filter](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/filters/bilateral_filter.py)
|
221 | 222 | * [Convolve](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/filters/convolve.py)
|
| 223 | + * [Gabor Filter](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/filters/gabor_filter.py) |
222 | 224 | * [Gaussian Filter](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/filters/gaussian_filter.py)
|
223 | 225 | * [Median Filter](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/filters/median_filter.py)
|
224 | 226 | * [Sobel Filter](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/filters/sobel_filter.py)
|
|
511 | 513 | * [Modular Exponential](https://github.com/TheAlgorithms/Python/blob/master/maths/modular_exponential.py)
|
512 | 514 | * [Monte Carlo](https://github.com/TheAlgorithms/Python/blob/master/maths/monte_carlo.py)
|
513 | 515 | * [Monte Carlo Dice](https://github.com/TheAlgorithms/Python/blob/master/maths/monte_carlo_dice.py)
|
| 516 | + * [Nevilles Method](https://github.com/TheAlgorithms/Python/blob/master/maths/nevilles_method.py) |
514 | 517 | * [Newton Raphson](https://github.com/TheAlgorithms/Python/blob/master/maths/newton_raphson.py)
|
515 | 518 | * [Number Of Digits](https://github.com/TheAlgorithms/Python/blob/master/maths/number_of_digits.py)
|
516 | 519 | * [Numerical Integration](https://github.com/TheAlgorithms/Python/blob/master/maths/numerical_integration.py)
|
|
546 | 549 | * [Sieve Of Eratosthenes](https://github.com/TheAlgorithms/Python/blob/master/maths/sieve_of_eratosthenes.py)
|
547 | 550 | * [Sigmoid](https://github.com/TheAlgorithms/Python/blob/master/maths/sigmoid.py)
|
548 | 551 | * [Simpson Rule](https://github.com/TheAlgorithms/Python/blob/master/maths/simpson_rule.py)
|
| 552 | + * [Sock Merchant](https://github.com/TheAlgorithms/Python/blob/master/maths/sock_merchant.py) |
549 | 553 | * [Softmax](https://github.com/TheAlgorithms/Python/blob/master/maths/softmax.py)
|
550 | 554 | * [Square Root](https://github.com/TheAlgorithms/Python/blob/master/maths/square_root.py)
|
551 | 555 | * [Sum Of Arithmetic Series](https://github.com/TheAlgorithms/Python/blob/master/maths/sum_of_arithmetic_series.py)
|
|
0 commit comments