Skip to content

peeusste/bbc-_kata4_spiral

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

bbc-_kata4_spiral

The challenge: Spiral Matrix Given an m x n matrix, return all elements of the matrix in spiral order.

Example

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

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

Constraints

m == matrix.length

n == matrix[i].length

1 <= m, n <= 10

-100 <= matrix[i][j] <= 100

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages