Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 1.13 KB

README.md

File metadata and controls

29 lines (18 loc) · 1.13 KB

Python 3 Binder

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):

  1. Clone the repo:

     git clone https://github.com/kuzmich/python-challenge-solution.git python-challenge
     cd python-challenge
    
  2. Make the virtualenv:

     python3 -m venv venv
     source venv/bin/activate
    
  3. Install the requirements:

     pip install jupyter
     pip install -r requirements.txt
    
  4. Run the notebook:

     jupyter notebook solution.ipynb