You are given a list of time intervals during which a system is active. Each interval is represented by a pair of times in 24-hour format (HH:MM) indicating the start and end times of activity. You are also provided with a full day period (from 00:00 to 24:00).
Your task is as follows:
Assume the following:
Write a function that implements the above requirements.
Example:
Given the intervals:
[ ["08:00", "10:00"], ["09:30", "12:00"], ["13:00", "15:00"], ["14:30", "16:00"] ]
After merging, the intervals become:
[ ["08:00", "12:00"], ["13:00", "16:00"] ]
The downtime is calculated as the sum of the following periods:
Your function should compute and return the total downtime in minutes.