class Solution(object):
def removeInvalidParentheses(self, s):
"""
:type s: str
:rtype: List[str]
"""
def isvalid(s):
ctr=0
for string in s:
if string=='(':
ctr+=1
if string==')':
ctr-=1
if ctr<0:
return False
return ctr==0
n=len(s)
level={s}
while level:
valid = filter(isvalid, level)
if valid:
return valid
level = {s[:i] + s[i+1:] for s in level for i in range(n)}
我想知道什麼的level
數據類型,因爲它看起來並不像一本字典。蟒蛇是什麼級別的數據類型= {S}
它是一個集合的例子 – mic4ael
你試過對它調用'type'嗎? – user2357112
爲什麼要問一些你可以很容易地搜索到的東西? –