https://leetcode.com/problems/increasing-triplet-subsequence/ Increasing Triplet Subsequence - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com find increasing triplet sequence a < b < c a_i < b_i < c_i idea: moving minimum!!!!!! class Solution: def increasingTriplet(self, nums: Lis..