Skip to content

kuzmich/python-challenge-solution

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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