-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudent_attendance.py
37 lines (24 loc) · 1005 Bytes
/
student_attendance.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
# Leetcode 551
# 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.
def student_attendance(attendance):
# Check if there are more than 2 absences
if attendance.count('A') >= 2:
return False
# Check for 3 consecutive lates
if 'LLL' in s:
return False
return True
# Example usage:
print(check_record("PPALLP")) # Output: True
print(check_record("PPALLL")) # Output: False