[LeetCode] Adjacent Increasing Subarrays Detection II

1 · · Nov. 10, 2024, 4:03 a.m.
3350. Adjacent Increasing Subarrays Detection II Given an array nums of n integers, your task is to find the maximum value of k for which there exist two adjacent subarrays of length k each, such that both subarrays are strictly increasing. Specifically, check if there are two subarrays of length k starting at indices a and b (a < b), where: Both subarrays nums[a..a + k - 1] and nums[b..b + k - 1] are strictly increasing. The subarrays must be adjacent, meaning b = a + k. Return the maximum p...