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