551. Student Attendance Record I

来源:互联网 发布:阿里云logo矢量图下载 编辑:程序博客网 时间:2024/06/05 22:57

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.


code:

class Solution(object):
    def checkRecord(self, s):
        """
        :type s: str
        :rtype: bool
        """
        return s.count("A")<=1 and  s.count("LLL")<1

0 0
原创粉丝点击