💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
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; }; ```