【leetcode】1021. Remove Outermost Parentheses
題目如下:
A valid parentheses string is either empty
("")
,"(" + A + ")"
, orA + B
, whereA
andB
are valid parentheses strings, and+
represents string concatenation. For example,""
,"()"
,"(())()"
, and"(()(()))"
are all valid parentheses strings.A valid parentheses string
S
is primitive if it is nonempty, and there does not exist a way to split it intoS = A+B
, withA
andB
nonempty valid parentheses strings.Given a valid parentheses string
S
, consider its primitive decomposition:S = P_1 + P_2 + ... + P_k
, whereP_i
are primitive valid parentheses strings.Return
S
after removing the outermost parentheses of every primitive string in the primitive decomposition ofS
.
Example 1:
Input: "(()())(())" Output: "()()()" Explanation: The input string is "(()())(())", with primitive decomposition "(()())" + "(())". After removing outer parentheses of each part, this is "()()" + "()" = "()()()".
Example 2:
Input: "(()())(())(()(()))" Output: "()()()()(())" Explanation: The input string is "(()())(())(()(()))", with primitive decomposition "(()())" + "(())" + "(()(()))". After removing outer parentheses of each part, this is "()()" + "()" + "()(())" = "()()()()(())".
Example 3:
Input: "()()" Output: "" Explanation: The input string is "()()", with primitive decomposition "()" + "()". After removing outer parentheses of each part, this is "" + "" = "".
Note:
S.length <= 10000
S[i]
is"("
or")"
S
is a valid parentheses string
解題思路:括號配對的題目在leetcode出現了很多次了,從左往右遍歷數組,分別記錄左括號和右括號出現的次數,當兩者相等的時候,即為一組括號。
代碼如下:
class Solution(object): def removeOuterParentheses(self, S): """ :type S: str :rtype: str """ left = 0 right = 0 res = ‘‘ tmp = ‘‘ for i in S: tmp += i if i == ‘(‘: left += 1 else: right += 1 if left == right: res += tmp[1:-1] tmp = ‘‘ left = 0 right = 0 return res
【leetcode】1021. Remove Outermost Parentheses