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()
以上是关于leetcode1190的主要内容,如果未能解决你的问题,请参考以下文章