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 @@ -37,7 +37,7 @@ Design and implement an Elevator System that can handle multiple requests, move
- **Methods:** requestElevator(int floor, Direction direction), step(), etc.

### 3. Request
- **Fields:** int floor, Direction direction
- **Fields:** int sourceFloor, int destinationFloor

### 4. Direction (enum)
- Values: UP, DOWN, IDLE
Expand Down Expand Up @@ -71,4 +71,4 @@ See `ElevatorSystemDemo.java` for a sample usage and simulation of the elevator
- **Advanced scheduling:** Implement algorithms for optimal elevator assignment.
- **Add features:** Such as maintenance mode, emergency stop, or floor display.

---
---