题解列表

筛选

蛇行矩阵-题解(Python代码)

摘要:解题思路:找出每一行,每一列递进的规律,先循环层数,再循环列数注意事项:参考代码:n = eval(input())i=1o = 1j = 1while i <=n:    if i!=1:     ……