Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions solutions/java/src/elevatorsystem/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Problem Statement

Design and implement an Elevator System that can handle multiple requests, move between floors, and manage direction and vendingMachineState efficiently.
Design and implement an Elevator System that can handle multiple requests, move between floors, and manage direction and elevatorState efficiently.

---

Expand All @@ -19,7 +19,7 @@ Design and implement an Elevator System that can handle multiple requests, move

## Core Entities

- **Elevator:** Represents the elevator, manages its vendingMachineState, direction, and request queue.
- **Elevator:** Represents the elevator, manages its elevatorState, direction, and request queue.
- **ElevatorController:** Handles incoming requests and delegates them to the elevator.
- **Request:** Represents a request to move to a specific floor in a given direction.
- **Direction (enum):** UP, DOWN, IDLE.
Expand Down