551. Student Attendance Record I(python+cpp)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_21275321/article/details/83212645

You are given a string representing an attendance record for a student. The record only contains the following three characters:
‘A’ : Absent.
‘L’ : Late.
‘P’ : Present.
A student could be rewarded if his attendance record doesn’t contain more than one ‘A’ (absent) or more than two continuous ‘L’ (late).
You need to return whether the student could be rewarded according to his attendance record.
Example 1:

Input: "PPALLP" 
Output: True 

Example 2:

Input: "PPALLL"
Output: False

解释:
python代码:

class Solution(object):
    def checkRecord(self, s):
        """
        :type s: str
        :rtype: bool
        """
        if  s.count('A')>1 or s.count('LLL')>0:
            return False
        return True

c++代码:

class Solution {
public:
    bool checkRecord(string s) {
        if(count(s.begin(),s.end(),'A')>1 || s.find("LLL")!=string::npos)
            return false;
        return true;
    }
};

总结:
学会使用c++ <string>中的count()函数和find()函数。

猜你喜欢

转载自blog.csdn.net/qq_21275321/article/details/83212645
今日推荐