Increasing Triplet Subsequence

Jyothi
Jan 14, 2022

--

Question is:

Given an integer array nums, return true if there exists a triple of indices (i, j, k) such that i < j < k and nums[i] < nums[j] < nums[k]. If no such indices exists, return false.

--

--