dengxinyi 6 years ago
parent
commit
38a0de26b7
1 changed files with 8 additions and 0 deletions
  1. 8 0
      medium/456.132-pattern.go

+ 8 - 0
medium/456.132-pattern.go

@@ -0,0 +1,8 @@
+func find132pattern(nums []int) bool {
+	n := len(nums)
+	if n < 3 {
+		return false
+	}
+	one, three, two := 0, 1, 2
+	for one < 
+}