您的位置:首页 > 其它

String-551-Student Attendance Record I

2018-02-06 14:07 274 查看
Description:

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


Best Solution:

class Solution {
public boolean checkRecord(String s) {
return !(s.indexOf("A") != s.lastIndexOf("A") || s.contains("LLL"));
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: