You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Given an array find the Longest increasing subsequence.
In interviews they might ask these as what is the max length of sub array. Describe the solution you'd like
Suppose A={1,4,2,4,3} we can have increasing subsequence 1,2,3 or 1,2,4.
Brute force takes exponential time, so this is preferred. Do you want to work on it
Ill add comments and code using C++.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Given an array find the Longest increasing subsequence.
In interviews they might ask these as what is the max length of sub array.
Describe the solution you'd like
Suppose A={1,4,2,4,3} we can have increasing subsequence 1,2,3 or 1,2,4.
Brute force takes exponential time, so this is preferred.
Do you want to work on it
Ill add comments and code using C++.
The text was updated successfully, but these errors were encountered: