Skip to content

Latest commit

 

History

History
59 lines (25 loc) · 890 Bytes

File metadata and controls

59 lines (25 loc) · 890 Bytes

Description

Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring.

Example 1:

Input: "(()"

Output: 2

Explanation: The longest valid parentheses substring is "()"

Example 2:

Input: ")()())"

Output: 4

Explanation: The longest valid parentheses substring is "()()"

Solutions

Python3

Java

...