修改 0503.下一个更大元素II go版本中的代码错误
This commit is contained in:
parent
4316022814
commit
f1a65d7e2d
|
|
@ -207,7 +207,7 @@ class Solution:
|
||||||
```go
|
```go
|
||||||
func nextGreaterElements(nums []int) []int {
|
func nextGreaterElements(nums []int) []int {
|
||||||
length := len(nums)
|
length := len(nums)
|
||||||
result := make([]int,length,length)
|
result := make([]int,length)
|
||||||
for i:=0;i<len(result);i++{
|
for i:=0;i<len(result);i++{
|
||||||
result[i] = -1
|
result[i] = -1
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue