From 7766c629ddf37ec47fdad38cbcb345bd86027fba Mon Sep 17 00:00:00 2001 From: SUBHAMAY__GANGULY <71601569+STREIN-11@users.noreply.github.com> Date: Thu, 12 Dec 2024 20:33:34 +0530 Subject: [PATCH] Update longest_increasing_subsequence.cpp --- Daily/longest_increasing_subsequence.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Daily/longest_increasing_subsequence.cpp b/Daily/longest_increasing_subsequence.cpp index ac132ee6..6dff2a32 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}