g0601_0700.s0674_longest_continuous_increasing_subsequence.Solution Maven / Gradle / Ivy
package g0601_0700.s0674_longest_continuous_increasing_subsequence;
// #Easy #Array
public class Solution {
public int findLengthOfLCIS(int[] nums) {
int ans = 1;
int count = 1;
for (int i = 0; i < nums.length - 1; i++) {
if (nums[i] < nums[i + 1]) {
count++;
} else {
ans = max(count, ans);
count = 1;
}
}
return max(ans, count);
}
private int max(int n1, int n2) {
return Math.max(n1, n2);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy