This repo contains my attempted solution at the ElevatorSaga programming game.
My solution will pass all of the levels that required X number of people to be transported within X seconds after a few goes (if not right away).
It has trouble with the challanges requiring X number of people to be transported without letting anyone wait more than X seconds.
The issue with my code is that multiple elevators will service a floor at the same time, which is inefficient because only one needs to, so I need to fix the way floors are assigned to elevators.