代码改变世界

[LeetCode] 54. Spiral Matrix_Medium tag: array, DFS

2021-08-22 07:13  Johnson_强生仔仔  阅读(24)  评论(0编辑  收藏  举报
Given an m x n matrix, return all elements of the matrix in spiral order. Example 1: Input: matrix = [[1,2,3],[4,5,6],[7,8,9]] Output: [1,2,3,6,9,8,7,