This question evaluates the ability to parse weekday and 24-hour time strings, reason about interval overlap, and apply efficient merging and sorting techniques for time-based intervals.
You are given a list of time intervals representing meetings. Each interval is a pair of strings in the format:
"<Day> <H>:<MM>"
(24-hour time)
<Day>
is one of
Mon, Tue, Wed, Thu, Fri, Sat, Sun
"Mon 9:00"
,
"Mon 13:00"
,
"Tue 09:30"
Example input:
[["Mon 9:00", "Mon 13:00"], ["Mon 11:00", "Mon 16:00"]]
Two intervals overlap if they occur on the same day and their time ranges intersect (endpoints may be treated as overlapping, i.e., [9:00, 13:00] overlaps [13:00, 14:00]).
Task:
Output requirements:
Clarify/assume: