Skip to content

Instantly share code, notes, and snippets.

@marcelowa
marcelowa / meeting-room.md
Last active May 18, 2026 05:45
Meeting room

Instructions

Create a meeting manager that has the following functionalities. Given a list of meeting times, check if any of them overlap. Return the minimum number of rooms required to accommodate all the meetings.

Boilerplate

class MeetingsManager {
  public addMeeting(startTime: number, endTime: number): void {}