551. 学生出席记录 Student Attendance Record I

Posted Long Long Journey

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了551. 学生出席记录 Student Attendance Record I相关的知识,希望对你有一定的参考价值。

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

Subscribe to see which companies asked this question.


  1. public class Solution {
  2. public bool CheckRecord(string s) {
  3. int lateNum = 0;
  4. int absentNum = 0;
  5. foreach(var i in s) {
  6. if (i == ‘L‘) {
  7. lateNum++;
  8. } else {
  9. lateNum = 0;
  10. if (i == ‘A‘) {
  11. absentNum++;
  12. }
  13. }
  14. if (absentNum > 1 || lateNum > 2) {
  15. return false;
  16. }
  17. }
  18. return true;
  19. }
  20. }






以上是关于551. 学生出席记录 Student Attendance Record I的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode:学生的出勤记录|551

C++&Python描述 LeetCode 551. 学生出勤记录 I

LeetCode 551. 学生出勤记录 I /552. 学生出勤记录 II(动态规划)/345. 反转字符串中的元音字母(set加入元素的方法)

LeetCode刷题551-简单-学生出勤记录 I

Leetcode刷题100天—551.学生出勤记录I(字符串)—day12

LeetCode 551 学生出勤记录I[选择 字符串] HERODING的LeetCode之路