Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 692 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 692 Bytes

💻 coding_exercises

Let's code!

Here you can find the implementation and tests of some coding exercises. These include:

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! 🙃