-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy path32-longest-valid-parentheses.py
More file actions
40 lines (32 loc) · 1.02 KB
/
32-longest-valid-parentheses.py
File metadata and controls
40 lines (32 loc) · 1.02 KB
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
"""
32. Longest Valid Parentheses
Hard - 37.3%
Given a string containing just the characters '(' and ')', return the length of the longest valid (well-formed) parentheses substring.
Example 1:
Input: s = "(()"
Output: 2
Explanation: The longest valid parentheses substring is "()".
Example 2:
Input: s = ")()())"
Output: 4
Explanation: The longest valid parentheses substring is "()()".
Example 3:
Input: s = ""
Output: 0
"""
class Solution:
def longestValidParentheses(self, s: str) -> int:
stack = [-1] # Base for calculation
max_len = 0
for i in range(len(s)):
if s[i] == '(':
stack.append(i)
else: # s[i] == ')'
stack.pop()
if not stack:
# No matching '(' for current ')'
stack.append(i)
else:
# Calculate length of current valid parentheses
max_len = max(max_len, i - stack[-1])
return max_len