In this mini-project, you will be implementing a joke recommender system using k-nearest-neighbors.
Download the starter files, and extract them.
Set up a virtual environment and install the project dependencies:
$ python3 -m venv env
$ source env/bin/activate
$ pip install -r requirements.txt
You will be using pytest to check each of your functions. You can run this with
$ pytest tests.py
Use the test cases in tests.py to guide the implementation of your functions.