-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathContents.swift
64 lines (55 loc) · 1.83 KB
/
Contents.swift
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
/**
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'.
*/
class Solution {
func checkRecord(_ s: String) -> Bool {
if s.count == 1 { return true }
var absentCount = 0
var lateCount = 0
for (i, c) in s.enumerated() {
if absentCount == 2 || lateCount == 3 {
return false
}
if c == "A" {
absentCount += 1
} else if c == "L" {
if i == 0 {
lateCount += 1
} else {
if s[s.index(s.startIndex, offsetBy: i - 1)] == "L" {
lateCount += 1
} else {
lateCount = 1
}
}
}
}
if absentCount == 2 || lateCount == 3 {
return false
}
return true
}
}
let s = Solution()
let r = s.checkRecord("LALL")
print(r)