You are given an array of records representing employee presence in an office for a single day. Each record is an object containing two properties:
It is guaranteed that for each record, the check-in time is strictly earlier than the check-out time.
Your task is to determine the contiguous time interval during which the office had the maximum number of employees present. If the maximum occupancy is maintained over multiple intervals, return the earliest such interval.
Input:
An array of objects, for example:
[
{ "checkIn": "09:00", "checkOut": "11:30" },
{ "checkIn": "10:15", "checkOut": "12:00" },
{ "checkIn": "10:45", "checkOut": "11:00" }
]
Output:
Return an object with the following properties:
Example:
Given the input above, the maximum occupancy is 3, which occurs from 10:45 to 11:00. Thus, your function should return:
{ "start": "10:45", "end": "11:00", "count": 3 }
Constraints & Considerations:
Write a function or program in your preferred language to solve this problem.