class Solution {
public boolean checkRecord(String s) {
int countL =0;
int countA = 0;
int i =0;
while(i<s.length())
{
char ch = s.charAt(i);
if(ch=='A')
{
countA++;
if(countA>=2) return false;
i++;
}
else if(ch=='L')
{
while(i<s.length()&&s.charAt(i)=='L')
{
countL++;
i++;
}
if(countL>=3) return false;
else countL=0;
}
else
i++;
}
return true;
}
}
551. Student Attendance Record I
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
推荐阅读更多精彩内容
- 题目描述: You are given a string representing an attendance r...
- DescriptionYou are given a string representing an attenda...
- 题目 You are given a string representing an attendance reco...