AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
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 ``` ``` /** * @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; }; ```