diff --git a/Daily/longest_increasing_subsequence.cpp b/Daily/longest_increasing_subsequence.cpp index ac132ee..6dff2a3 100644 --- a/Daily/longest_increasing_subsequence.cpp +++ b/Daily/longest_increasing_subsequence.cpp @@ -1,7 +1,6 @@ /* Given an array of integers, find the length of the longest (strictly) increasing subsequence from the given array. - Input: N = 16 A = {0,8,4,12,2,10,6,14,1,9,5,13,3,11,7,15}