Skip to content

The coding challenge that used to exist on the oddball /challenge page

Notifications You must be signed in to change notification settings

oddballteam/challenge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Oddball Coding Screen

Feel free to use tools like Google, StackOverflow, and reference manuals when completing this challenge.

Overview

As health care providers, we're concerned with the moods and stress levels of our patients. We have historical data available in CSV files that we want to analyze.

We're going to define a bad day as a day when:

  • a user's mood is 1 or 2
  • a user's mood is a 3, but their stress for that same day is a 4 or 5 If we don't have mood or stress data for a given day, we'll assume it's neutral (3)

Steps

  1. Download Data files
    • users.csv, a CSV file containing fake users.
    • moods.csv, a CSV file containing their moods.
    • stress.csv, a CSV file containing their stress levels.
  2. Using your programming language of choice, write a program that reads in the data from the CSV files and can determine the following:
    • All users who had two or more bad days in the week of 2017-05-07.
    • For output, show their usernames and the number of bad days they had that week, sorted in decreasing order of bad days.
    • Find the 5 longest streaks of consecutive bad days.
    • For each of these streaks, show the username, the number of bad days, and the starting date of that streak

About

The coding challenge that used to exist on the oddball /challenge page

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published