2024年6月3日

摘要: 今天是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 阅读(4) 评论(0) 推荐(0) 编辑
 
摘要: 今天是day8, 题目一:使用栈实现队列 //先实现一个栈,给定int数组一个别名Mystack type Mystack []int //使用引用传递值,将v使用append追加至形参s中 func (s *Mystack) Push(v int){ *s = append(*s,v) } //使 阅读全文
posted @ 2024-06-03 15:08 leusure45 阅读(4) 评论(0) 推荐(0) 编辑