摘要:
今天是day9: 题目一: 匹配括号: class Solution: def isValid(self, s: str) -> bool: stack = [] for item in s: if item == '(': stack.append(')') elif item == '[': s 阅读全文
posted @ 2024-06-03 15:43
leusure45
阅读(18)
评论(0)
推荐(0)
浙公网安备 33010602011771号