You are given a string representing an attendance record for a student. The record only contains the following three characters:

 

  1. 'A' : Absent.
  2. 'L' : Late.
  3. '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 boolean checkRecord(String s) {
        if (s == null)
            return true;
        int a = 0, l = 1;
        for (int i=0; i<s.length();) {
            char ch = s.charAt(i);
            if (ch == 'A') a ++;
            if (a > 1) return false;
            if (ch == 'L') {
                while (i < s.length()-1 && s.charAt(++i) == 'L') l ++;
                if (l > 2) return false;
                l = 1;
                if (i < s.length()-1) i--;
            }
            i ++;
        }
        return true;
    }
}

 

相关文章:

  • 2021-07-27
  • 2022-12-23
  • 2022-02-13
  • 2022-12-23
  • 2022-12-23
  • 2021-11-01
  • 2022-12-23
  • 2021-08-12
猜你喜欢
  • 2022-12-23
  • 2021-06-03
  • 2021-05-17
  • 2022-01-15
  • 2022-12-23
  • 2022-12-23
  • 2021-07-29
相关资源
相似解决方案