-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create 3105. Longest Strictly Increasing or Strictly Decreasing Subar…
…ray (#705)
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
3105. Longest Strictly Increasing or Strictly Decreasing Subarray
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
class Solution { | ||
public: | ||
int longestMonotonicSubarray(vector<int>& nums) { | ||
int res = 1, low = 1, high = 1; | ||
for (int i = 1; i < nums.size(); i++){ | ||
if (nums[i] > nums[i - 1]){ | ||
high++; | ||
low = 1; | ||
} | ||
else if (nums[i] < nums[i - 1]){ | ||
low++; | ||
high = 1; | ||
} | ||
else{ | ||
low = 1; | ||
high = 1; | ||
} | ||
res = max({res, low, high}); | ||
} | ||
return res; | ||
} | ||
}; |