59. Spiral Matrix II
问题
Given a positive integer n, generate an n x n matrix filled with elements from 1 to n2 in spiral order.
循环,创建一个上界和一个下界。
当达到界限时,改变方向。
更新上界和下界的数值。
当上界小于下界时返回。
1 | class Solution { |
59. Spiral Matrix II
问题
Given a positive integer n, generate an n x n matrix filled with elements from 1 to n2 in spiral order.
循环,创建一个上界和一个下界。
当达到界限时,改变方向。
更新上界和下界的数值。
当上界小于下界时返回。
1 | class Solution { |
59. Spiral Matrix II