mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-05 00:25:22 +08:00
Add solution 341
This commit is contained in:
@ -1,7 +1,6 @@
|
||||
package leetcode
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"math"
|
||||
)
|
||||
|
||||
@ -20,7 +19,6 @@ func find132pattern(nums []int) bool {
|
||||
stack = stack[:len(stack)-1]
|
||||
}
|
||||
stack = append(stack, nums[i])
|
||||
fmt.Printf("stack = %v \n", stack)
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
Reference in New Issue
Block a user