Longest Continuous Increasing Subsequence at Yandex
Easy51.8% acceptance
This problem has 37.5% frequency at Yandex.
Problem Description
Given an unsorted array of integers `nums`, return _the length of the longest**continuous increasing subsequence** (i.e. subarray)_. The subsequence must be **strictly** increasing. A **continuous increasing subsequence** is defined by two indices `l` and `r` (`l < r`) such that it is `[nums[l], nu...
Read full problem and hintsTopics
Also asked at 4 companies
More Yandex Questions
Longest Subarray of 1's After Deleting One ElementMediumSummary RangesEasyFind K Closest ElementsMediumMaximize Distance to Closest PersonMediumTwo SumEasy
View all Yandex questions