Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create longest common subsequence.py
LCS Problem Statement: Given two sequences, find the length of longest subsequence present in both of them. A subsequence is a sequence that appears in the same relative order, but not necessarily continious. Example:"abc", "abg" are subsequences of "abcdefgh".
- Loading branch information