-
Notifications
You must be signed in to change notification settings - Fork 1
/
551.student-attendance-record-i.py
87 lines (82 loc) · 1.8 KB
/
551.student-attendance-record-i.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#
# @lc app=leetcode id=551 lang=python3
#
# [551] Student Attendance Record I
#
# https://leetcode.com/problems/student-attendance-record-i/description/
#
# algorithms
# Easy (48.18%)
# Likes: 547
# Dislikes: 30
# Total Accepted: 175.2K
# Total Submissions: 363.6K
# Testcase Example: '"PPALLP"'
#
# You are given a string s representing an attendance record for a student
# where each character signifies whether the student was absent, late, or
# present on that day. The record only contains the following three
# characters:
#
#
# 'A': Absent.
# 'L': Late.
# 'P': Present.
#
#
# The student is eligible for an attendance award if they meet both of the
# following criteria:
#
#
# The student was absent ('A') for strictly fewer than 2 days total.
# The student was never late ('L') for 3 or more consecutive days.
#
#
# Return true if the student is eligible for an attendance award, or false
# otherwise.
#
#
# Example 1:
#
#
# Input: s = "PPALLP"
# Output: true
# Explanation: The student has fewer than 2 absences and was never late 3 or
# more consecutive days.
#
#
# Example 2:
#
#
# Input: s = "PPALLL"
# Output: false
# Explanation: The student was late 3 consecutive days in the last 3 days, so
# is not eligible for the award.
#
#
#
# Constraints:
#
#
# 1 <= s.length <= 1000
# s[i] is either 'A', 'L', or 'P'.
#
#
#
# @lc code=start
class Solution:
def checkRecord(self, s: str) -> bool:
if self.checkA(s) and self.checkL(s):
return True
else:
return False
def checkA(self, s: str) -> bool:
nums = Counter(s)
return nums['A'] < 2
def checkL(self, s: str) -> bool:
n = len(s)
for i in range(n - 2):
if s[i:i+3] == "LLL":
return False
return True
# @lc code=end