Solution: Find the Minimum Platforms Required for a Station
Review various solutions to calculate the minimum platforms required for a station.
We'll cover the following...
We'll cover the following...
Solution 1: Brute force
Explanation
The problem is to find the maximum number of trains that are there at the given railway station at a time. An iterative solution would be to take every interval, one by one, and find the number of intervals that overlap with it. We keep track of the maximum number of intervals that overlap with an interval and return the maximum value.
Time complexity
Since this algorithm has two nested independent loops, the time complexity will be ...