Skip to content

Latest commit

 

History

History

spiral_matrix_ii

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

59. Spiral Matrix II

Description

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 ]
]