README ¶ 59. Spiral Matrix II 题目 Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order. For example, Given n = 3, You should return the following matrix: [ [ 1, 2, 3 ], [ 8, 9, 4 ], [ 7, 6, 5 ] ] 解题思路 依照题意,设置填充边界,沿着边界填写。 见程序注释 Expand ▾ Collapse ▴ Documentation ¶ There is no documentation for this package. Source Files ¶ View all Source files spiral-matrix-ii.go Click to show internal directories. Click to hide internal directories.