You are given the availability of several employees as a list of time intervals during the day. Each employee’s availability is represented as an array of pairs of integers, where each pair [start, end] represents a block of time (in minutes from 0 to 1440) during which the employee is free. Note that the intervals for a single employee do not overlap.
Your task is to write a function that, given these availabilities and a required meeting duration (in minutes), returns the list of intervals (as pairs) during which all employees are available for a meeting that lasts at least the given duration.
For example, suppose the input is something like:
Your function should compute the intersection of these intervals and filter out any interval shorter than the required duration, returning all valid meeting slots.
Considerations:
Write a solution that efficiently computes the common availability intervals and adheres to clean code practices.