Skip to content

Commit cea7891

Browse files
authored
[Stack] Refactor solution to Longest Valid Parentheses
1 parent 301c6df commit cea7891

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

Stack/LongestValidParentheses.swift

+13-10
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,26 @@
66

77
class LongestValidParentheses {
88
func longestValidParentheses(_ s: String) -> Int {
9-
let sChars = Array(s.characters)
10-
var stack = [Int]()
11-
var longest = 0
9+
var stack = [Int](), longest = 0, start = 0
1210

13-
for (i, char) in sChars.enumerated() {
14-
if char == "(" || stack.isEmpty || sChars[stack.last!] == ")" {
11+
for (i, char) in s.enumerated() {
12+
if char == "(" {
1513
stack.append(i)
1614
} else {
17-
let _ = stack.removeLast()
18-
if stack.isEmpty {
19-
longest = max(longest, i + 1)
15+
if !stack.isEmpty {
16+
stack.removeLast()
17+
18+
if let last = stack.last {
19+
longest = max(longest, i - last)
20+
} else {
21+
longest = max(longest, i - start + 1)
22+
}
2023
} else {
21-
longest = max(longest, i - stack.last!)
24+
start = i + 1
2225
}
2326
}
2427
}
2528

2629
return longest
2730
}
28-
}
31+
}

0 commit comments

Comments
 (0)