If martial artists use kata as a method for exercise and practice, what might be the equivalent for coders like us? Coding katas are short, repeatable programming challenges which are meant to exercise everything from your focus, to your workflow.
This was already done in PHPUnit which you can find here, so this time I'm doing it in Python.
- Prime Factors
- Roman Numerals
- Bowling Game
- String Calculator
- Tennis Match
- FizzBuzz
- The Gilded Rose
To run this project, you must have Python 3.6 or higher installed.
Begin by cloning this repository to your machine, and installing all dependencies dependencies.
git clone [email protected]:Thavarshan/python-code-katas.git katas
cd katas && pip install -r requirements.txt
Just run Python unit test in the project root.
cd katas
python -m venv ./venv
source ./venv/bin/activate
python -m unittest discover tests -p '*_test.py'