Add solution 341

This commit is contained in:
YDZ
2021-03-24 11:36:45 +08:00
parent fec98dba7f
commit 0c519027d4
26 changed files with 762 additions and 453 deletions

View File

@ -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
}