Let's code!
Here you can find the implementation and tests of some coding exercises. These include:
- Data structures: Queue, stack, HashTable, etc.
- Sorting algorithms: Quicksort, etc.
- Other algorithms: BFS, array and matrix manipulation, etc.
To setup the repository, execute:
# create virtualenv
virtualenv -p python3 venv
# activate virtualenv
source ./venv/bin/activate
# install dependencies
pip install -r dev-requirements.txt
After that, you can run the test suite by executing:
make test
Happy coding! 🙃