Longest Sign Alternating Subsequence
Given a list of non-zero integers nums
, return the length of longest subsequence that flips signs on each consecutive number.
Constraints
n ≤ 100,000
wheren
is the length ofnums
.
https://binarysearch.com/problems/Longest-Sign-Alternating-Subsequence
Examples
Example 1
Input
- nums =
[1, 2, -5, 3, -2]
Output
- answer =
4
Explanation
We can pick [1, -5, 3, -2]
.
Example 2
Input
- nums =
[-1, -2, 5, -3, 2]
Output
- answer =
4
Explanation
We can pick [-1, 5, -3, 2]
Leave a comment