Back
Spiral Matrix
Given an m x n matrix, return all elements of the matrix in spiral order.
Java
Description
Solution
My Code
Spiral Matrix
Given an m x n matrix, return all elements of the matrix in spiral order.
Example 1:
Input:
[[1,2,3],[4,5,6],[7,8,9]]
Output:
[1,2,3,6,9,8,7,4,5]
Viz
Tests
Run
Input
3x3
3x4
Custom
[[1,2,3],[4,5,6],[7,8,9]]
arr =
[[1,2,3],[4,5,6],[7,8,9]]
Start
1
2
3
4
5
6
7
8
9
Result
[]
Variables
No variables to display
Depth
Function Call
Stack empty
0/10
0.5x
1x
2x
4x