Skip to content

Commit

Permalink
Dynamic Programming
Browse files Browse the repository at this point in the history
  • Loading branch information
fnf47 authored Mar 6, 2017
1 parent def428e commit deec0f2
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions DP/Longest_Bitonic_Subsequence/Problem_Statement.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

//Longest Bitonic Subsequence.


A subsequence of an array is called bitonic if the subsequence is,
1) Strictly increasing
OR
2) Strictly decreasing
OR
3) First strictly increasing and then strictly decreasing.


Related problem on spoj : http://www.spoj.com/problems/CODERE3/


0 comments on commit deec0f2

Please sign in to comment.