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.

class Solution {
    public boolean checkRecord(String s) {
        if(s == null || s.length() == 0)
            return true;
        int a = 0;
        int l = 0;

        for(int i = 0; i < s.length(); i++) {
            char c = s.charAt(i);
            if(c == 'A') {
                a++;
                if(a > 1)
                    return false;
                l = 0;
            } else if(c == 'L') {
                l++;
                if(l > 2)
                    return false;
            } else {
                l = 0;
            }
        }

        return true;
    }
}

results matching ""

    No results matching ""