题解列表

筛选

2899: 蛇形填充数组

摘要:解题思路:注意事项:参考代码:n = int(input())l = [[0 for j in range(n)] for i in range(n)]a = 1b = 0for i in range……