Write a function that reverses characters in (possibly nested) parentheses in the input string.
Input strings will always be well-formed with matching ()
s.
- For
inputString = "(bar)"
, the output should bereverseInParentheses(inputString) = "rab"
. - For
inputString = "foo(bar)baz"
, the output should bereverseInParentheses(inputString) = "foorabbaz"
. - For
inputString = "foo(bar)baz(blim)"
, the output should bereverseInParentheses(inputString) = "foorabbazmilb"
. - For
inputString = "foo(bar(baz))blim"
, the output should bereverseInParentheses(inputString) = "foobazrabblim"
.- Because
"foo(bar(baz))blim"
becomes"foo(barzab)blim"
and then"foobazrabblim"
.
- Because
-
[execution time limit] 5 seconds (ts)
-
[input] string
inputString
- A string consisting of lowercase English letters and the characters
(
and)
. - It is guaranteed that all parentheses in
inputString
form a regular bracket sequence. - Guaranteed constraints:
$0 \le inputString.length \le 50$
- A string consisting of lowercase English letters and the characters
-
[output] string
- Return
inputString
, with all the characters that were in parentheses reversed.
- Return