您的位置:首页 > 其它

Student Attendance Record I

2017-04-20 09:12 281 查看
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

class Solution {
public:
bool checkRecord(string s) {
int absent = 0;
//bool late =false;
for(int i = 0 ; i < s.size() ; ++i){
if(s[i] =='A'){
++absent;
if(absent >1)
return false;
}
else if(s[i]=='L'&&i<s.size()-2&&s[i+1]=='L'&&s[i+2]=='L')
return false;

}
return true;

}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: