Leetcode_674_最长连续递增序列_水题

1/24

期末考试暂时结束后,重新开始的第一天
class Solution {
     
    public int findLengthOfLCIS(int[] nums) {
     
        int ans=0;
        int now=1;
        if(nums.length==0) return 0;
        for(int i=1;i<nums.length;i++){
     
            if(nums[i]>nums[i-1]){
     
                now++;
            }else{
     
                ans=Math.max(now,ans);
                now=1;
            }
        }
        return Math.max(now,ans);
    }
}

你可能感兴趣的:(水题,daily_algorithm,leetcode)