This repo contains my solutions to the excelent The Python Challenge puzzles. You can view the code here on GitHub, or you can actually run the code (and play with it) in the full-featured Jupyter Notebook environment with Binder.
You can also play with the code on your computer (assuming you have Python 3 installed):
-
Clone the repo:
git clone https://github.com/kuzmich/python-challenge-solution.git python-challenge cd python-challenge
-
Make the virtualenv:
python3 -m venv venv source venv/bin/activate
-
Install the requirements:
pip install jupyter pip install -r requirements.txt
-
Run the notebook:
jupyter notebook solution.ipynb