cogent / nurses_scaffold_ts

A quick start with the Nurses coding challenge to be used for pair programming interviews, in TypeScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nurse Rostering

You just started work for a startup that sells medical rostering software. They’ve just landed a new client, a major hospital, and everyone’s excited! However, the HR policies at the hospital are too complex for the software to handle.

At the hospital nurses work a rotating shift system. There are three work shifts per day; a morning shift, an evening shift and a night shift. Each day, all three shifts need to be filled.

Your task is to develop a rostering system that implements the following policies:

  • Five nurses need to be on staff for each shift.
  • Nurses must not be expected to work more than one shift per day.

The rostering system should calculate and output the nursing roster for any time period (specified by a start and end date).

A list of rosterable nurses has been provided in the file spec/sample_data/nurses.json.

Scaffold Code

Some code has already been provided to help save you time. This focusses on the following areas.

  1. Providing a command line interface so that this app can be called with parameters and provide help information.
  2. Handling of input and output, such as parsing a file of nurses, and formatting the resulting roster to text, for printing to standard out.

You're welcome to change any of this code if you like, but the goal is to save you time so you can show us how you'd like to solve the interesting parts of this problem, not spend your time formatting strings for output.

You may want to start by looking at the RosterBuilder class which is intended to do the work of creating the Roster.

Running

This app is designed to be from the command line using:

npm start -- --start-date=<start> --end-date=<end> --filename=<file>

Doing so with no params should print out usage information.

Tests

You can run tests with npm test. Tests for the scaffold code have been provided.

About

A quick start with the Nurses coding challenge to be used for pair programming interviews, in TypeScript


Languages

Language:TypeScript 100.0%