LeetCode.485. Max Consecutive Ones

找出陣列中最長的連續 1
https://leetcode.com/problems/max-consecutive-ones/description/

class Solution {
public:
    int findMaxConsecutiveOnes(vector<int>& nums) {
        int result = 0,tmp=0;
        for(auto x: nums){
            if(x==1){
                tmp++;
            }else{
                tmp=0;
            }
            if(result<tmp){
                result = tmp;
            }
        }
        return result;
    }
};
















留言

這個網誌中的熱門文章

何謂淨重(Net Weight)、皮重(Tare Weight)與毛重(Gross Weight)

Architecture(架構) 和 Framework(框架) 有何不同?_軟體設計前的事前規劃的藍圖概念

(2021年度)駕訓學科筆試準備題庫歸納分析_法規是非題