其他分享
首页 > 其他分享> > leetcode551. 学生出勤记录 I

leetcode551. 学生出勤记录 I

作者:互联网

题目链接: https://leetcode-cn.com/problems/student-attendance-record-i/

今天的题很简单,应该没有人不会做,贴一下自己的代码

class Solution {
public:
    bool checkRecord(string s) {
        int A = 0, L = 0, len = s.length();
        for(int i = 0; i < len; i++)
        {
            char ch = s[i];
            if(ch == 'A') {
                A++;
                if(A >= 2) return false;
                L = 0;
            }
            if(ch == 'P'){
                L = 0;
            }
            if(ch == 'L'){
                L++;
                if(L >= 3) return false;
            }
        }
        return true;
    }
};

标签:ch,return,记录,出勤,len,++,int,false,leetcode551
来源: https://www.cnblogs.com/LingFengJ/p/15151763.html