会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
leisure535
导航
博客园
首页
新随笔
联系
订阅
管理
公告
2024年6月3日
day9
摘要: 今天是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
摘要: 今天是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)
编辑