1190. Reverse Substrings Between Each Pair of Parentheses
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.Input: s = "a(bcdefghijkl(mno)p)q"
Output: "apmnolkjihgfedcbq"Last updated