|
42 | 42 | * [burrows wheeler](https://github.com/TheAlgorithms/Python/blob/master/compression/burrows_wheeler.py)
|
43 | 43 | * [huffman](https://github.com/TheAlgorithms/Python/blob/master/compression/huffman.py)
|
44 | 44 | * [peak signal to noise ratio](https://github.com/TheAlgorithms/Python/blob/master/compression/peak_signal_to_noise_ratio.py)
|
45 |
| - * Image Data |
46 | 45 | ## Conversions
|
47 | 46 | * [decimal to binary](https://github.com/TheAlgorithms/Python/blob/master/conversions/decimal_to_binary.py)
|
48 | 47 | * [decimal to hexadecimal](https://github.com/TheAlgorithms/Python/blob/master/conversions/decimal_to_hexadecimal.py)
|
|
87 | 86 | * Trie
|
88 | 87 | * [trie](https://github.com/TheAlgorithms/Python/blob/master/data_structures/trie/trie.py)
|
89 | 88 | ## Digital Image Processing
|
| 89 | + * [change contrast](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/change_contrast.py) |
90 | 90 | * Edge Detection
|
91 | 91 | * [canny](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/edge_detection/canny.py)
|
92 | 92 | * Filters
|
93 | 93 | * [convolve](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/filters/convolve.py)
|
94 | 94 | * [gaussian filter](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/filters/gaussian_filter.py)
|
95 | 95 | * [median filter](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/filters/median_filter.py)
|
96 | 96 | * [sobel filter](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/filters/sobel_filter.py)
|
97 |
| - * Image Data |
98 | 97 | ## Divide And Conquer
|
99 | 98 | * [closest pair of points](https://github.com/TheAlgorithms/Python/blob/master/divide_and_conquer/closest_pair_of_points.py)
|
100 | 99 | * [max subarray sum](https://github.com/TheAlgorithms/Python/blob/master/divide_and_conquer/max_subarray_sum.py)
|
|
203 | 202 | * [find lcm](https://github.com/TheAlgorithms/Python/blob/master/maths/find_lcm.py)
|
204 | 203 | * [find max](https://github.com/TheAlgorithms/Python/blob/master/maths/find_max.py)
|
205 | 204 | * [find min](https://github.com/TheAlgorithms/Python/blob/master/maths/find_min.py)
|
| 205 | + * [gaussian](https://github.com/TheAlgorithms/Python/blob/master/maths/gaussian.py) |
206 | 206 | * [greater common divisor](https://github.com/TheAlgorithms/Python/blob/master/maths/greater_common_divisor.py)
|
| 207 | + * [is square free](https://github.com/TheAlgorithms/Python/blob/master/maths/is_square_free.py) |
207 | 208 | * [lucas series](https://github.com/TheAlgorithms/Python/blob/master/maths/lucas_series.py)
|
| 209 | + * [mobius function](https://github.com/TheAlgorithms/Python/blob/master/maths/mobius_function.py) |
208 | 210 | * [modular exponential](https://github.com/TheAlgorithms/Python/blob/master/maths/modular_exponential.py)
|
209 | 211 | * [newton raphson](https://github.com/TheAlgorithms/Python/blob/master/maths/newton_raphson.py)
|
210 | 212 | * [prime check](https://github.com/TheAlgorithms/Python/blob/master/maths/prime_check.py)
|
| 213 | + * [prime factors](https://github.com/TheAlgorithms/Python/blob/master/maths/prime_factors.py) |
211 | 214 | * [segmented sieve](https://github.com/TheAlgorithms/Python/blob/master/maths/segmented_sieve.py)
|
212 | 215 | * [sieve of eratosthenes](https://github.com/TheAlgorithms/Python/blob/master/maths/sieve_of_eratosthenes.py)
|
213 | 216 | * [simpson rule](https://github.com/TheAlgorithms/Python/blob/master/maths/simpson_rule.py)
|
|
219 | 222 | * [rotate matrix](https://github.com/TheAlgorithms/Python/blob/master/matrix/rotate_matrix.py)
|
220 | 223 | * [searching in sorted matrix](https://github.com/TheAlgorithms/Python/blob/master/matrix/searching_in_sorted_matrix.py)
|
221 | 224 | * [spiral print](https://github.com/TheAlgorithms/Python/blob/master/matrix/spiral_print.py)
|
| 225 | + * Tests |
| 226 | + * [pytest](https://github.com/TheAlgorithms/Python/blob/master/matrix/tests/pytest.ini) |
| 227 | + * [test matrix operation](https://github.com/TheAlgorithms/Python/blob/master/matrix/tests/test_matrix_operation.py) |
222 | 228 | ## Networking Flow
|
223 | 229 | * [ford fulkerson](https://github.com/TheAlgorithms/Python/blob/master/networking_flow/ford_fulkerson.py)
|
224 | 230 | * [minimum cut](https://github.com/TheAlgorithms/Python/blob/master/networking_flow/minimum_cut.py)
|
|
0 commit comments