LeetCode: Student Attendance Record I
Question
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.
Solution
def check_record(s)
rewarded = true
rewarded = false if s.count('A') > 1 || s.index('LLL')
rewarded
end
Comments