1190. Reverse Substrings Between Each Pair of Parentheses
https://leetcode.com/problems/reverse-substrings-between-each-pair-of-parentheses
Description
You are given a string s
that consists of lower case English letters and brackets.
Reverse the strings in each pair of matching parentheses, starting from the innermost one.
Your result should not contain any brackets.
Example 1:
Example 2:
Example 3:
Example 4:
Constraints:
0 <= s.length <= 2000
s
only contains lower case English characters and parentheses.It's guaranteed that all parentheses are balanced.
ac
Last updated