leetcode551】的更多相关文章

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 o…
public class Solution { public bool CheckRecord(string s) { ; ; ; var preChar = '\0'; ; i < s.Length; i++) { var c = s[i]; if (c == 'A') { Absent++; preChar = c; if (MaxLate < ContiLate) { MaxLate = ContiLate; } ContiLate = ; } else if (c == 'L') {…
给定一个字符串来代表一个学生的出勤纪录,这个纪录仅包含以下三个字符: 'A' : Absent,缺勤 'L' : Late,迟到 'P' : Present,到场 如果一个学生的出勤纪录中不超过一个'A'(缺勤)并且不超过两个连续的'L'(迟到),那么这个学生会被奖赏. 你需要根据这个学生的出勤纪录判断他是否会被奖赏. 示例 1: 输入: "PPALLP" 输出: True 示例 2: 输入: "PPALLL" 输出: False class Solution {…