摘要: #### [20. 有效的括号](https://leetcode.cn/problems/valid-parentheses/) 用字典存匹配的括号 比较栈里第一个元素的值与当前括号 `考过两次` ```python class Solution: def isValid(self, s: str 阅读全文
posted @ 2022-06-02 09:10 YTT77 阅读(23) 评论(0) 推荐(0) 编辑