Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 297 Bytes

spiral-matrix-ii.md

File metadata and controls

13 lines (11 loc) · 297 Bytes

Given a positive integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.

Example:

Input: 3
Output:
[
 [ 1, 2, 3 ],
 [ 8, 9, 4 ],
 [ 7, 6, 5 ]
]