@author: ZZQ @software: PyCharm @file: IsValid.py @time: 2018/9/16 20:20 要求: 给定一个只包括 '(',')','{','}','[',']' 的字符串,判断字符串是否有效. 有效字符串需满足: 1)左括号必须用相同类型的右括号闭合. 2)左括号必须以正确的顺序闭合. class Solution(): def __init__(self): pass def isCouple(self, str1, str2): if…