-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path20.swift
34 lines (29 loc) · 883 Bytes
/
20.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
// passed
class Solution {
let left: Set = Set("([{")
let right: Set = Set(")]}")
func matches(_ l: Character, _ r:Character) -> Bool {
return (l == "(" && r == ")") ||
(l == "[" && r == "]") ||
(l == "{" && r == "}")
}
func isValid(_ s: String) -> Bool {
var pending = [Character]()
for c in s {
if left.contains(c) {
pending.append(c)
} else if right.contains(c) {
if let l = pending.popLast() {
if !matches(l, c) { // 左右匹配
return false
}
} else { // 多余的右括号
return false
}
}
}
return pending.isEmpty // 多余的左括号
}
}
// test
print(Solution().isValid("[][]{}"))