You are given two arrays of equal length:
Each flight occupies a gate from its arrival time up to, but not including, its departure time. Your task is to write a function that calculates the minimum number of gates required so that all flights can be scheduled without any overlapping gate usage.
Example
Suppose the input arrays are:
arrival = [900, 940, 950, 1100, 1500, 1800]
departure = [910, 1200, 1120, 1130, 1900, 2000]
Your function should return the minimum number of gates needed to handle the flights without conflicts.
Constraints:
Develop a solution that efficiently computes the minimum number of gates required.