Leetcode 253 — Meeting Room II

Victoria
1 min readSep 25, 2020

Original Question:

Given an array of meeting time intervals consisting of start and end times [[s1,e1],[s2,e2],…] (s i < e i), find the minimum number of conference rooms required.

Example 1:
Input: [[0, 30],[5, 10],[15, 20]]
Output: 2

Example 2:
Input: [[7,10],[2,4]]
Output: 1

test case 1: [[0, 30],[5, 10],[15, 20]]

test case 2: [[7,10],[2,4]]

For these small test cases, the algorithm worked. Needs to check other people’s code tomorrow and compare it with mine.

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Victoria
Victoria

Written by Victoria

"What if I fall?" "Oh my darling, but what if you fly?"

No responses yet

Write a response