Skip to content

lrzmroczek/sw-dev-lessons-example-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Requirements

  • Create an algorithm that will operate on a data set of multiple values
  • The algorithm will return a single results from the data set
  • The algorithm's result will average the values in the data set
  • The algorithm's result will be offset by a fixed amount

Setup

Create virtual environment

python -m venv venv

Activate virtual environment

On Windows

.\venv\Scripts\activate

On Mac/Linux

source ./venv/bin/activate

Install required packages

pip install -r requirements.txt

Usage

Run Example Project

python my_project.py

Run Unit Tests

pytest