You are given a list of events, where each event is represented as an object with a start
and an end
time. Each time is a string in the HH:MM 24-hour format. All events occur within the same day, and each event's end time is strictly after its start time.
Your task is to implement a function that detects if any events overlap. If overlaps exist, the function should return a list (or any clear representation) of the overlapping events (for example, as pairs of events or their indices). If there are no overlaps, the function should indicate that the schedule is conflict-free.
start
: a string representing the event's start time (e.g., "09:00")end
: a string representing the event's end time (e.g., "10:30")For instance, given the following list of events:
[
{"start": "09:00", "end": "10:00"},
{"start": "09:30", "end": "11:00"},
{"start": "11:30", "end": "12:30"}
]
The first and second events overlap. Your function should identify and return this conflict.
Design your algorithm with both correctness and efficiency in mind. Document your code appropriately and consider using helper functions if necessary.