You are given a list of website sessions, where each session is represented as a pair of integers [start, end]. These integers indicate the start and end times (in minutes from the beginning of the day) during which a user was active on the website. Sessions are inclusive of the start time and exclusive of the end time. That is, if one session ends at time T and another begins at time T, they are not considered overlapping.
Your task is to write a function or program that determines:
If the period of peak concurrency spans more than a single minute, return the complete continuous interval during which the number of active sessions remains at the maximum.
You can assume:
Example input:
[[30, 150], [120, 180], [100, 130], [160, 210]]
Expected behavior (for this sample, do not hardcode for this input): Determine the maximum number of concurrent sessions and output the earliest continuous interval during which this maximum is maintained.
Write a complete, self-contained solution that reads such a list (or you can assume the list is provided as a parameter), processes it, and prints or returns the required information.