54. Spiral Matrix - Medium
前往題目
之前寫的文章
想法
- 初始的變數沒有想出來,有了
left right top
和bottom
就簡單了
思路
- 定義上下左右邊界,以下的
code
要注意out of boundary
- 先取
top elements
- 再取
right elements
- 注意
left
要小於right
,top
要小於bottom
以防special case
- 再取
bottom elements
- 再取
left elements
- 反覆直到全部都取到
Code
54. Spiral Matrix - Medium
https://f88083.github.io/2024/03/10/54-Spiral-Matrix-Medium/