Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 724 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 724 Bytes

CovidProject

A project from my python class during my sophomore year. Reads data from local files, performs linear search and quick sort on array of objects, builds balanced binary search tree and searches balanced BST.

Files

CovidProjectOverview.pdf is the assignment from my professor.
CovidProjectReport.pdf is my assignment submission.

Set-up and Installation

This project utilizes pipenv, the package manager. Open a terminal in the project directory and..

  1. Install pipenv pip install pipenv
  2. Start a virtual environment specific to this project pipenv shell
  3. Install all packages from pipfile to the virtual environment pipenv install

Type python main.py to execute the program.