Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/slaveofcode/elevator-test

Solve the Elevator Problem
https://github.com/slaveofcode/elevator-test

Last synced: about 8 hours ago
JSON representation

Solve the Elevator Problem

Awesome Lists containing this project

README

        

# Elevator Test
1. Modify the code to be more readable.
2. Try to convert to object oriented, simplicity & reusability is the main point.
3. Currently, the elevator would run one-by-one, solve the code so those 3 elevator can serve the in a parallel way without conflicting each other when serving on the same floor (1 floor 1 elevator).
4. Fix incorrect Person floor position with the "Waiting" text, that must be a waiting person on specific floor, ready to pickup.
5. Create loop 100x for elevators serve more people with random floor and random destination, the destination must different than the source floor
6. Optimize the number of people served by elevator, e.g. move faster and smooth without removing the animation.
7. When serve finished, move back the elevator to 1st floor
8. Shorter time to serve is better.