diff --git a/Daily/Largest_bitonic_sequence.cpp b/Daily/Largest_bitonic_sequence.cpp index 8e29966..b5b8e90 100644 --- a/Daily/Largest_bitonic_sequence.cpp +++ b/Daily/Largest_bitonic_sequence.cpp @@ -2,6 +2,8 @@ Given an array of positive integers. Find the maximum length of Bitonic subsequence.  A subsequence of array is called Bitonic if it is first strictly increasing, then strictly decreasing. + + Input: nums = [1, 2, 5, 3, 2] Output: 5 Explanation: The sequence {1, 2, 5} is