Python/dynamic_programming
dhruvsaini 436edf3a88 Create longest_increasing_subsequence.py
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. For example, the length of LIS for {10, 22, 9, 33, 21, 50, 41, 60, 80} is 6
2017-01-03 16:54:38 +05:30
..
edit_distance.py Add Edit Distance DP Algorithm 2016-10-12 21:48:37 +07:00
fibonacci.py PEP style 2016-09-26 16:09:59 +05:30
knapsack.py Create knapsack.py 2017-01-03 16:50:13 +05:30
longest common subsequence.py Create longest common subsequence.py 2017-01-02 20:51:37 +05:30
longest_increasing_subsequence.py Create longest_increasing_subsequence.py 2017-01-03 16:54:38 +05:30
longest_sub_array.py add sum of the longest sub array 2016-11-29 13:18:47 +08:00
minimum_partition.py Create minimum_partition.py 2017-01-03 16:42:31 +05:30