|
16 | 16 | * [All Subsequences](https://github.com/TheAlgorithms/Python/blob/master/backtracking/all_subsequences.py)
|
17 | 17 | * [Coloring](https://github.com/TheAlgorithms/Python/blob/master/backtracking/coloring.py)
|
18 | 18 | * [Hamiltonian Cycle](https://github.com/TheAlgorithms/Python/blob/master/backtracking/hamiltonian_cycle.py)
|
| 19 | + * [Knight Tour](https://github.com/TheAlgorithms/Python/blob/master/backtracking/knight_tour.py) |
19 | 20 | * [Minimax](https://github.com/TheAlgorithms/Python/blob/master/backtracking/minimax.py)
|
20 | 21 | * [N Queens](https://github.com/TheAlgorithms/Python/blob/master/backtracking/n_queens.py)
|
21 | 22 | * [Rat In Maze](https://github.com/TheAlgorithms/Python/blob/master/backtracking/rat_in_maze.py)
|
|
71 | 72 | ## Compression
|
72 | 73 | * [Burrows Wheeler](https://github.com/TheAlgorithms/Python/blob/master/compression/burrows_wheeler.py)
|
73 | 74 | * [Huffman](https://github.com/TheAlgorithms/Python/blob/master/compression/huffman.py)
|
| 75 | + * [Lempel Ziv](https://github.com/TheAlgorithms/Python/blob/master/compression/lempel_ziv.py) |
| 76 | + * [Lempel Ziv Decompress](https://github.com/TheAlgorithms/Python/blob/master/compression/lempel_ziv_decompress.py) |
74 | 77 | * [Peak Signal To Noise Ratio](https://github.com/TheAlgorithms/Python/blob/master/compression/peak_signal_to_noise_ratio.py)
|
75 | 78 |
|
76 | 79 | ## Computer Vision
|
|
199 | 202 | * [Longest Increasing Subsequence O(Nlogn)](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/longest_increasing_subsequence_o(nlogn).py)
|
200 | 203 | * [Longest Sub Array](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/longest_sub_array.py)
|
201 | 204 | * [Matrix Chain Order](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/matrix_chain_order.py)
|
| 205 | + * [Max Non Adjacent Sum](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/max_non_adjacent_sum.py) |
202 | 206 | * [Max Sub Array](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/max_sub_array.py)
|
203 | 207 | * [Max Sum Contiguous Subsequence](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/max_sum_contiguous_subsequence.py)
|
204 | 208 | * [Minimum Partition](https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/minimum_partition.py)
|
|
440 | 444 | * [Least Recently Used](https://github.com/TheAlgorithms/Python/blob/master/other/least_recently_used.py)
|
441 | 445 | * [Linear Congruential Generator](https://github.com/TheAlgorithms/Python/blob/master/other/linear_congruential_generator.py)
|
442 | 446 | * [Magicdiamondpattern](https://github.com/TheAlgorithms/Python/blob/master/other/magicdiamondpattern.py)
|
| 447 | + * [Markov Chain](https://github.com/TheAlgorithms/Python/blob/master/other/markov_chain.py) |
443 | 448 | * [Nested Brackets](https://github.com/TheAlgorithms/Python/blob/master/other/nested_brackets.py)
|
444 | 449 | * [Palindrome](https://github.com/TheAlgorithms/Python/blob/master/other/palindrome.py)
|
445 | 450 | * [Password Generator](https://github.com/TheAlgorithms/Python/blob/master/other/password_generator.py)
|
|
0 commit comments