mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
19 lines
234 B
Go
19 lines
234 B
Go
|
package main
|
||
|
|
||
|
import "math"
|
||
|
|
||
|
func increasingTriplet(nums []int) bool {
|
||
|
a, b := math.MaxInt, math.MaxInt
|
||
|
for _, x := range nums {
|
||
|
if x <= a {
|
||
|
a = x
|
||
|
} else if x <= b {
|
||
|
b = x
|
||
|
} else {
|
||
|
return true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return false
|
||
|
}
|