LeetCode 32. Longest Valid Parentheses

DP | Stack

Given a string containing just the characters '(' and ')', find 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

Constraints:

  • 0 <= s.length <= 3 * 10^4

  • s[i] is '(', or ')'.

English Version in Youtube

中文版解答Youtube Link

中文版解答Bilibili Link

Solution 1: Dynamic Programming

Solution 2: Stack

Last updated

Was this helpful?