551. Student Attendance Record I

Description

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

Solution

Solution 1

/**
 * @param {string} s
 * @return {boolean}
 */
var checkRecord = function(s) {
    "use strict";
    let countA = 0, contL = 0;
    for (let i = 0; i < s.length; i++) {
        if (s[i] === "A") {
            countA++;
            if (countA > 1) {
                return false;
            }
        }
        if (s[i] === "L") {
            contL++;
            if (contL > 2) {
                return false;
            }
        } else {
            contL = 0;
        }
    }
    return true;
};

Solution 2

/**
 * Solved with regular expression
 * @param {string} s
 * @return {boolean}
 */
var checkRecord = function(s) {
    "use strict";
    return !(/.*A.*A.*/.test(s) || /.*LLL.*/.test(s));
};

results matching ""

    No results matching ""