|
1 |
| -##Analysis |
2 |
| -* Compression Analysis |
3 |
| -*[psnr](https://github.com/TheAlgorithms/Python/blob/master/analysis/compression_analysis/psnr.py) |
4 | 1 | ##Arithmetic Analysis
|
5 | 2 | *[bisection](https://github.com/TheAlgorithms/Python/blob/master/arithmetic_analysis/bisection.py)
|
6 | 3 | *[intersection](https://github.com/TheAlgorithms/Python/blob/master/arithmetic_analysis/intersection.py)
|
|
39 | 36 | *[xor cipher](https://github.com/TheAlgorithms/Python/blob/master/ciphers/xor_cipher.py)
|
40 | 37 | ##Compression
|
41 | 38 | *[huffman](https://github.com/TheAlgorithms/Python/blob/master/compression/huffman.py)
|
| 39 | +##Compression Analysis |
| 40 | +*[psnr](https://github.com/TheAlgorithms/Python/blob/master/compression_analysis/psnr.py) |
42 | 41 | ##Data Structures
|
43 | 42 | *[arrays](https://github.com/TheAlgorithms/Python/blob/master/data_structures/arrays.py)
|
44 | 43 | *[avl](https://github.com/TheAlgorithms/Python/blob/master/data_structures/avl.py)
|
45 | 44 | *[LCA](https://github.com/TheAlgorithms/Python/blob/master/data_structures/LCA.py)
|
46 | 45 | * Binary Tree
|
47 |
| -*[AVL tree](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary%20tree/AVL_tree.py) |
48 |
| -*[binary search tree](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary%20tree/binary_search_tree.py) |
49 |
| -*[fenwick tree](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary%20tree/fenwick_tree.py) |
50 |
| -*[lazy segment tree](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary%20tree/lazy_segment_tree.py) |
51 |
| -*[segment tree](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary%20tree/segment_tree.py) |
52 |
| -*[treap](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary%20tree/treap.py) |
| 46 | +*[AVL tree](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/AVL_tree.py) |
| 47 | +*[binary search tree](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/binary_search_tree.py) |
| 48 | +*[fenwick tree](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/fenwick_tree.py) |
| 49 | +*[lazy segment tree](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/lazy_segment_tree.py) |
| 50 | +*[segment tree](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/segment_tree.py) |
| 51 | +*[treap](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/treap.py) |
53 | 52 | * Hashing
|
54 | 53 | *[double hash](https://github.com/TheAlgorithms/Python/blob/master/data_structures/hashing/double_hash.py)
|
55 | 54 | *[hash table](https://github.com/TheAlgorithms/Python/blob/master/data_structures/hashing/hash_table.py)
|
|
192 | 191 | * Tests
|
193 | 192 | *[test fibonacci](https://github.com/TheAlgorithms/Python/blob/master/maths/tests/test_fibonacci.py)
|
194 | 193 | ##Matrix
|
195 |
| -*[matrixmultiplication addition](https://github.com/TheAlgorithms/Python/blob/master/matrix/matrix_multiplication_addition.py) |
| 194 | +*[matrixoperation](https://github.com/TheAlgorithms/Python/blob/master/matrix/matrix_operation.py) |
196 | 195 | *[searching in sorted matrix](https://github.com/TheAlgorithms/Python/blob/master/matrix/searching_in_sorted_matrix.py)
|
| 196 | +*[spiralPrint](https://github.com/TheAlgorithms/Python/blob/master/matrix/spiralPrint.py) |
197 | 197 | ##Networking Flow
|
198 | 198 | *[ford fulkerson](https://github.com/TheAlgorithms/Python/blob/master/networking_flow/ford_fulkerson.py)
|
199 | 199 | *[minimum cut](https://github.com/TheAlgorithms/Python/blob/master/networking_flow/minimum_cut.py)
|
|
294 | 294 | *[p022 names](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_22/p022_names.txt)
|
295 | 295 | *[sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_22/sol1.py)
|
296 | 296 | *[sol2](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_22/sol2.py)
|
| 297 | +* Problem 234 |
| 298 | +*[sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_234/sol1.py) |
297 | 299 | * Problem 24
|
298 | 300 | *[sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_24/sol1.py)
|
299 | 301 | * Problem 25
|
|