LICENSE
MANIFEST.in
README.md
pyproject.toml
setup.cfg
algozen/__init__.py
algozen.egg-info/PKG-INFO
algozen.egg-info/SOURCES.txt
algozen.egg-info/dependency_links.txt
algozen.egg-info/top_level.txt
algozen/algorithms/__init__.py
algozen/algorithms/array_algorithms.py
algozen/algorithms/geometry.py
algozen/algorithms/graph_algorithms.py
algozen/algorithms/greedy.py
algozen/algorithms/linked_list_algorithms.py
algozen/algorithms/matrix.py
algozen/algorithms/number_theory.py
algozen/algorithms/searching.py
algozen/algorithms/sorting.py
algozen/algorithms/string_algorithms.py
algozen/algorithms/tree_algorithms.py
algozen/data_structures/__init__.py
algozen/data_structures/avl_tree.py
algozen/data_structures/binary_search_tree.py
algozen/data_structures/binary_tree.py
algozen/data_structures/fenwick_tree.py
algozen/data_structures/graph.py
algozen/data_structures/heap.py
algozen/data_structures/linked_list.py
algozen/data_structures/queue.py
algozen/data_structures/segment_tree.py
algozen/data_structures/stack.py
algozen/data_structures/trie.py
algozen/data_structures/union_find.py
algozen/design_patterns/__init__.py
algozen/design_patterns/chain_of_responsibility.py
algozen/design_patterns/command.py
algozen/design_patterns/decorator.py
algozen/design_patterns/factory.py
algozen/design_patterns/iterator.py
algozen/design_patterns/observer.py
algozen/design_patterns/state.py
algozen/design_patterns/strategy.py
algozen/design_patterns/template_method.py
algozen/patterns/__init__.py
algozen/patterns/advanced_dp.py
algozen/patterns/array_patterns.py
algozen/patterns/bit_manipulation.py
algozen/patterns/cyclic_sort.py
algozen/patterns/divide_conquer.py
algozen/patterns/fast_slow_pointers.py
algozen/patterns/graph_patterns.py
algozen/patterns/mathematical_patterns.py
algozen/patterns/merge_intervals.py
algozen/patterns/optimization_patterns.py
algozen/patterns/sliding_window.py
algozen/patterns/string_processing.py
algozen/patterns/tree_patterns.py
algozen/patterns/two_pointers.py
algozen/problems/__init__.py
algozen/problems/arrays.py
algozen/problems/backtracking.py
algozen/problems/bit_manipulation.py
algozen/problems/dynamic_programming.py
algozen/problems/graphs.py
algozen/problems/linked_lists.py
algozen/problems/math_ops.py
algozen/problems/strings.py
algozen/problems/trees.py