代码重构 【Github Actions】

This commit is contained in:
github-actions[bot]
2021-07-29 02:33:38 +00:00
parent 5a5325b0c8
commit a8b66cd5ae
38 changed files with 110 additions and 159 deletions

View File

@@ -181,7 +181,6 @@ class Solution {
}
```
Go Code:
```go
@@ -208,7 +207,7 @@ func spiralOrder(matrix [][]int) []int {
}
down--
if top > down { break }
for i := down; i >= top; i-- {
res = append(res, matrix[i][left])
}
@@ -218,4 +217,3 @@ func spiralOrder(matrix [][]int) []int {
return res
}
```