Find a Longest Common Subsequence of Two Strings solved by 962

Feb. 6, 2014, 3:47 a.m. by Rosalind Team

Longest Common Subsequence Problem

Given: Two strings.

Return: A longest common subsequence of these strings.

Sample Dataset

AACCTTGG
ACACTGTGA

Sample Output

AACTGG

Extra Dataset

Please login to solve this problem.