假装不是个绅士
假装不是个绅士
全部文章
分类
题解(1)
归档
标签
去牛客网
登录
/
注册
假装不是个绅士的博客
全部文章
(共1篇)
题解 | #超级圣诞树# 递归
先按规律处理好,放进ans数组,再把右侧多余的空格干掉。 n = int(input()) def copy(ans,tmp,sx,sy): for i in range(sx,sx+len(tmp)): ans[i][sy:sy+len(tmp[0])] = tmp[i-s...
Python3
深度优先搜索
2021-12-24
6
869