You are given an integer array nums.
A subarray nums[l..r] is alternating if one of the following holds:
nums[l] < nums[l + 1] > nums[l + 2] < nums[l + 3] > ...nums[l] > nums[l + 1] < nums[l + 2] > nums[l + 3] < ...In other words, if we compare adjacent elements in the subarray, then the comparisons alternate between strictly greater and strictly smaller.
You can remove at most one element from nums. Then, you select an alternating subarray from nums.
Return an integer denoting the maximum length of the alternating subarray you can select.
A subarray of length 1 is considered alternating.
Example 1:
Input: nums = [2,1,3,2]
Output: 4
Explanation:
[2, 1, 3, 2], which is alternating because 2 > 1 < 3 > 2.Example 2:
Input: nums = [3,2,1,2,3,2,1]
Output: 4
Explanation:
nums[3] i.e., [3, 2, 1, 2, 3, 2, 1]. The array becomes [3, 2, 1, 3, 2, 1].[3, 2, 1, 3, 2, 1].Example 3:
Input: nums = [100000,100000]
Output: 1
Explanation:
[100000, 100000].Constraints:
2 <= nums.length <= 1051 <= nums[i] <= 105Loading editor...
[2,1,3,2]