Meeting Rooms
Merge Intervals
Problem
Given an array of intervals representing āNā appointments, find out if a person can attend all the appointments.
For example:
Thought Process
This is the exact same as Merge Intervals but in this problem we just return True or False if the merge or not
Solution
Last updated
Was this helpful?