leetcode1190

Posted asenyang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode1190相关的知识,希望对你有一定的参考价值。

 1 class Solution:
 2     def reverseParentheses(self, s: str) -> str:
 3         stack = [‘‘]
 4         for c in s:
 5             if c == (:
 6                 stack.append(‘‘)
 7             elif c == ):
 8                 add = stack.pop()[::-1]
 9                 stack[-1] += add
10             else:
11                 stack[-1] += c
12         return stack.pop()

参考:https://leetcode.com/problems/reverse-substrings-between-each-pair-of-parentheses/discuss/382775/Python3-straightforward-and-easiest-on-discussion

以上是关于leetcode1190的主要内容,如果未能解决你的问题,请参考以下文章

leetcode中等1190反转每对括号间的子串

LeetCode 1190 反转每对括号间的子串[栈]

1190. 反转每对括号间的子串

1190. 反转每对括号间的子串

1190. 反转每对括号间的子串

题目1190:大整数排序