【leetcode】#数组【Python】59. Spiral Matrix II螺旋矩阵 II
链接:https://leetcode-cn.com/problems/spiral-matrix-ii/题目:给定一个正整数 n,生成一个包含 1 到 n2 所有元素,且元素按顺时针顺序螺旋排列的正方形矩阵。示例:输入: 3 输出: [ [ 1, 2, 3 ], [ 8, 9, 4 ], [ 7, 6, 5 ] ]我的解法:先给9,然后每次把矩阵顺时针旋转,顶部push...