无私绿草

文章
4
资源
0
加入时间
3年0月21天

LeetCode-59 Spiral Matrix II

DescriptionGiven a positive integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.ExampleInput: 3Output:[[ 1, 2, 3 ],[ 8, 9, 4 ],[ 7, 6, 5 ]]Submissions这道题是54题的改进版,因此采用相同的解题思路,可回顾https://blog.csdn.net/weixin_41875