Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Longest Increasing Subsequence

To find the LIS of A, create a sequence B = sorted version of A (remove duplicates) Then LCS(A, B) = LIS(A)