Skip to content

Commit 0a9f908

Browse files
authored
Update 19. 螺旋矩阵.md
1 parent 08b709b commit 0a9f908

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

19. 螺旋矩阵.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
**给你一个 m 行 n 列的矩阵 matrix ,请按照顺时针螺旋顺序 ,返回矩阵中的所有元素。**
22

3-
![algo8](./images/alg8.jpg)
3+
![algo9](./images/algo9.jpg)
44

55
```
66
输入:matrix = [[1,2,3],[4,5,6],[7,8,9]]
@@ -17,4 +17,4 @@ class Solution:
1717
#剩余矩阵逆时针翻转
1818
matrix = list(zip(*matrix))[::-1]
1919
return res
20-
```
20+
```

0 commit comments

Comments
 (0)