Skip to content

Commit 640fb47

Browse files
authored
Update DIRECTORY.md
Built via the code in #1047
1 parent 3c8e931 commit 640fb47

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

DIRECTORY.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
* [burrows wheeler](https://github.com/TheAlgorithms/Python/blob/master/compression/burrows_wheeler.py)
4343
* [huffman](https://github.com/TheAlgorithms/Python/blob/master/compression/huffman.py)
4444
* [peak signal to noise ratio](https://github.com/TheAlgorithms/Python/blob/master/compression/peak_signal_to_noise_ratio.py)
45-
* Image Data
4645
## Conversions
4746
* [decimal to binary](https://github.com/TheAlgorithms/Python/blob/master/conversions/decimal_to_binary.py)
4847
* [decimal to hexadecimal](https://github.com/TheAlgorithms/Python/blob/master/conversions/decimal_to_hexadecimal.py)
@@ -87,14 +86,14 @@
8786
* Trie
8887
* [trie](https://github.com/TheAlgorithms/Python/blob/master/data_structures/trie/trie.py)
8988
## Digital Image Processing
89+
* [change contrast](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/change_contrast.py)
9090
* Edge Detection
9191
* [canny](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/edge_detection/canny.py)
9292
* Filters
9393
* [convolve](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/filters/convolve.py)
9494
* [gaussian filter](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/filters/gaussian_filter.py)
9595
* [median filter](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/filters/median_filter.py)
9696
* [sobel filter](https://github.com/TheAlgorithms/Python/blob/master/digital_image_processing/filters/sobel_filter.py)
97-
* Image Data
9897
## Divide And Conquer
9998
* [closest pair of points](https://github.com/TheAlgorithms/Python/blob/master/divide_and_conquer/closest_pair_of_points.py)
10099
* [max subarray sum](https://github.com/TheAlgorithms/Python/blob/master/divide_and_conquer/max_subarray_sum.py)
@@ -203,11 +202,15 @@
203202
* [find lcm](https://github.com/TheAlgorithms/Python/blob/master/maths/find_lcm.py)
204203
* [find max](https://github.com/TheAlgorithms/Python/blob/master/maths/find_max.py)
205204
* [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)
206206
* [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)
207208
* [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)
208210
* [modular exponential](https://github.com/TheAlgorithms/Python/blob/master/maths/modular_exponential.py)
209211
* [newton raphson](https://github.com/TheAlgorithms/Python/blob/master/maths/newton_raphson.py)
210212
* [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)
211214
* [segmented sieve](https://github.com/TheAlgorithms/Python/blob/master/maths/segmented_sieve.py)
212215
* [sieve of eratosthenes](https://github.com/TheAlgorithms/Python/blob/master/maths/sieve_of_eratosthenes.py)
213216
* [simpson rule](https://github.com/TheAlgorithms/Python/blob/master/maths/simpson_rule.py)
@@ -219,6 +222,9 @@
219222
* [rotate matrix](https://github.com/TheAlgorithms/Python/blob/master/matrix/rotate_matrix.py)
220223
* [searching in sorted matrix](https://github.com/TheAlgorithms/Python/blob/master/matrix/searching_in_sorted_matrix.py)
221224
* [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)
222228
## Networking Flow
223229
* [ford fulkerson](https://github.com/TheAlgorithms/Python/blob/master/networking_flow/ford_fulkerson.py)
224230
* [minimum cut](https://github.com/TheAlgorithms/Python/blob/master/networking_flow/minimum_cut.py)

0 commit comments

Comments
 (0)