Codewars python

This repository is where I test my codewars kata solutions, you can find the original kata with the id on the first line of every solution.

Installing environment

python -m venv env
./venv/bin/pip install -r requirements.txt

Useful commands

# Use the hooks folder to run pre-commit lint and test
git config core.hooksPath hooks
# Runing lint
./venv/bin/pycodestyle katas
# Running tests
./venv/bin/python -m unittest -f katas/*.py