2393. Count Strictly Increasing Subarrays
You are given an array nums consisting of positive integers.
Return the number of subarrays of nums that are in strictly increasing order.
A subarray is a contiguous part of an array.
1 | class Solution { |
2393. Count Strictly Increasing Subarrays
You are given an array nums consisting of positive integers.
Return the number of subarrays of nums that are in strictly increasing order.
A subarray is a contiguous part of an array.
1 | class Solution { |