|
76 | 76 | * [Avl Tree](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/avl_tree.py)
|
77 | 77 | * [Basic Binary Tree](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/basic_binary_tree.py)
|
78 | 78 | * [Binary Search Tree](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/binary_search_tree.py)
|
| 79 | + * [Binary Search Tree Recursive](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/binary_search_tree_recursive.py) |
79 | 80 | * [Fenwick Tree](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/fenwick_tree.py)
|
80 | 81 | * [Lazy Segment Tree](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/lazy_segment_tree.py)
|
81 | 82 | * [Lowest Common Ancestor](https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/lowest_common_ancestor.py)
|
|
270 | 271 | * [Abs](https://github.com/TheAlgorithms/Python/blob/master/maths/abs.py)
|
271 | 272 | * [Abs Max](https://github.com/TheAlgorithms/Python/blob/master/maths/abs_max.py)
|
272 | 273 | * [Abs Min](https://github.com/TheAlgorithms/Python/blob/master/maths/abs_min.py)
|
| 274 | + * [Allocation Number](https://github.com/TheAlgorithms/Python/blob/master/maths/allocation_number.py) |
273 | 275 | * [Area Under Curve](https://github.com/TheAlgorithms/Python/blob/master/maths/area_under_curve.py)
|
274 | 276 | * [Armstrong Numbers](https://github.com/TheAlgorithms/Python/blob/master/maths/armstrong_numbers.py)
|
275 | 277 | * [Average Mean](https://github.com/TheAlgorithms/Python/blob/master/maths/average_mean.py)
|
|
580 | 582 | ## Strings
|
581 | 583 | * [Aho-Corasick](https://github.com/TheAlgorithms/Python/blob/master/strings/aho-corasick.py)
|
582 | 584 | * [Boyer Moore Search](https://github.com/TheAlgorithms/Python/blob/master/strings/boyer_moore_search.py)
|
583 |
| - * [Check Panagram](https://github.com/TheAlgorithms/Python/blob/master/strings/check_panagram.py) |
| 585 | + * [Check Pangram](https://github.com/TheAlgorithms/Python/blob/master/strings/check_pangram.py) |
584 | 586 | * [Knuth Morris Pratt](https://github.com/TheAlgorithms/Python/blob/master/strings/knuth_morris_pratt.py)
|
585 | 587 | * [Levenshtein Distance](https://github.com/TheAlgorithms/Python/blob/master/strings/levenshtein_distance.py)
|
586 | 588 | * [Lower](https://github.com/TheAlgorithms/Python/blob/master/strings/lower.py)
|
|
0 commit comments