646. Maximum Length of Pair Chain
Medium
You are given an array of n
pairs pairs
where pairs[i] = [lefti, righti]
and lefti < righti
.
A pair p2 = [c, d]
follows a pair p1 = [a, b]
if b < c
. A chain of pairs can be formed in this fashion.
Return the length longest chain which can be formed.
You do not need to use up all the given intervals. You can select pairs in any order.
Example 1:
Example 2:
Constraints:
n == pairs.length
1 <= n <= 1000
-1000 <= lefti < righti <= 1000
解題
比較頭和尾巴 -> 想到 stack
Last updated