Your task is to implement a function that schedules events and returns the minimum number of resources required to handle all events without any overlap.
Description:
You are given a list of events, where each event is represented by an object with two properties: start
and end
(both are positive integers and start
is less than end
). If two events overlap in time, they cannot share the same resource. Your goal is to determine the minimum number of resources needed to schedule all events.
Requirements:
Input Format:
start
(integer) and end
(integer).Output Format:
Example:
Suppose the input is:
[
{ "start": 30, "end": 75 },
{ "start": 0, "end": 50 },
{ "start": 60, "end": 150 }
]
The expected output is:
2
Constraints:
Note: