Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up
ISSUE NUMBER
#265
SHORT DESCRIPTION
Code to find the longest bitonic subsequence in C++ using dynamic programming.
TESTING
Some inputs with their correct outputs.
Input:-
8
1 11 2 10 4 5 2 1
Output:-
6
Input:-
6
12 11 40 5 3 1
Output:-
5