1190. Reverse Substrings Between Each Pair of Parentheses
Description
Input: s = "(abcd)"
Output: "dcba"Input: s = "(u(love)i)"
Output: "iloveu"
Explanation: The substring "love" is reversed first, then the whole string is reversed.Input: s = "(ed(et(oc))el)"
Output: "leetcode"
Explanation: First, we reverse the substring "oc", then "etco", and finally, the whole string.Tags
Solution

Complexity
Code
Reference
Previous1143. Longest Common SubsequenceNext1269. Number of Ways to Stay in the Same Place After Some Steps
Last updated