码迷,mamicode.com
首页 > 其他好文 > 详细

54. Spiral Matrix(剑指offer--19)

时间:2018-06-15 23:30:50      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:return   script   esc   panel   column   The   tab   nbsp   剑指offer   

Given a matrix of m x n elements (m rows, n columns), 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]

Example 2:

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


 

 

54. Spiral Matrix(剑指offer--19)

标签:return   script   esc   panel   column   The   tab   nbsp   剑指offer   

原文地址:https://www.cnblogs.com/zle1992/p/9189235.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!