Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Files

Latest commit

Oct 15, 2018
5f00d0e · Oct 15, 2018

History

History

0059.spiral-matrix-ii

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Oct 15, 2018
Oct 15, 2018
Oct 15, 2018

题目

Given an integer n, generate a square matrix filled with elements from 1 to n^2 in spiral order.

For example, Given n = 3, You should return the following matrix:
[
 [ 1, 2, 3 ],
 [ 8, 9, 4 ],
 [ 7, 6, 5 ]
]

解题思路

依照题意,设置填充边界,沿着边界填写。

见程序注释