Day16.Student Attendance Record I(551)

问题描述
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

Input: "PPALLP"
Output: True
Input: "PPALLL"
Output: False

/**
 * @param {string} s
 * @return {boolean}
 */
var checkRecord = function(s) {
    var a = 0;
    var l = 0;
    var arr = s.split('');
    for(var i = 0; i < arr.length; i++){
        if(arr[i] === 'A'){
            a++;
            if(a>1){
                return false;
            }
        }
        if(arr[i] === 'L'){
            l++;
            if( l == 2 && arr[i+1] === 'L'){     
                return false;
            }
        }else{ l = 0;}
        
    }
    return true;
};
    原文作者:前端伊始
    原文地址: https://www.jianshu.com/p/d7287df6c696
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞