leetcode20-Valid Parentheses有效的括號

利用棧 編程方式一:按照課本上思路改寫的 class Solution: def isValid(self, s: str) -> bool: map={'(':')','[':']','{':'}'} match=True i=0 stack=[] while i<len(s) and match:
相關文章
相關標籤/搜索