完结君
完结君
全部文章
题解
归档
标签
去牛客网
登录
/
注册
完结君的博客
全部文章
/ 题解
(共1篇)
题解 | #迷宫问题#回溯遍历
y_size, x_size = [int(x) for x in input().split()] board = [] while True: try: line = [int(x) for x in input().split()] board.appe...
Python3
回溯
2022-05-10
0
367