Question
[LeetCode 334] Given an unsorted array return whether an increasing subsequence of length 3 exists or not in the array.
Submission
Using dynamic programming, find if there exist increasing subsequence with length greater than or equal to 3
1 | public class Solution { |