Skip to content

Commit bc3cda0

Browse files
authored
Update Length_Of_Longest_Increasing_Subsequence.java
1 parent 2a55931 commit bc3cda0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

DynamicProgramming/LongestIncreasingSubsequence/Length_Of_Longest_Increasing_Subsequence.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
/*
2+
https://www.techiedelight.com/longest-increasing-subsequence-using-dynamic-programming/
3+
https://www.geeksforgeeks.org/longest-increasing-subsequence-dp-3/
4+
5+
26
The Longest Increasing Subsequence (LIS) problem is to find the length of the longest subsequence of a given sequence such that all elements of the subsequence are sorted in increasing order.
37
example - length of LIS for {10, 22, 9, 33, 21, 50, 41, 60, 80} is 6 and LIS is {10, 22, 33, 50, 60, 80}
48
*/

0 commit comments

Comments
 (0)