391. Number of Airplanes in the Sky

Posted lawrenceseattle

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了391. Number of Airplanes in the Sky相关的知识,希望对你有一定的参考价值。

391. Number of Airplanes in the Sky
Given an interval list which are flying and landing time of the flight. How many airplanes are on the sky at most?

Example
For interval list

[
  (1,10),
  (2,3),
  (5,8),
  (4,7)
]
Return 3

Notice
If landing and flying happens at the same time, we consider landing should happen at first.

```

以上是关于391. Number of Airplanes in the Sky的主要内容,如果未能解决你的问题,请参考以下文章