Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 621 Bytes

File metadata and controls

25 lines (17 loc) · 621 Bytes

97.Student Attendance Record I

Description

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 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

Input: 'PPALLP'
Output: true

Input: 'PPALLL'
Output: false

From

LeetCode