Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 1.44 KB

README.md

File metadata and controls

50 lines (36 loc) · 1.44 KB

Algorithms and data structures

Implementation of the most popular algorithms and data structures in Python.

Algorithms:

Data structures:

Tests

For running all tests write down:

$ python -m unittest discover -s ./ -p 'tests.py'

For running specific tests:

$ python -m unittest <module>.<data_structure_or_algorithm>_tests

Ex: stack

$ python -m unittest data_structures.stack_tests

Ex: quicksort

$ python -m unittest algorithms.quicksort_tests