...

/

Challenge: Longest Common Subsequence of Two Sequences

Challenge: Longest Common Subsequence of Two Sequences

Solve the Longest Common Subsequence of Two Sequences Problem.

We'll cover the following...

Problem


Longest Common Subsequence of Two Sequences Problem

Compute the longest common subsequence of two sequences.

Input: Two sequences.

Output: Their longest common subsequence.


Given two sequences AA = (a1a_{1}, a2a_{2},…, ana_{n}) and BB = (b1b_{1}, b2b_{2},…, bmb_{m}), find the length of their longest common subsequence, i.e., the largest non-negative integer pp such that there exist indices

...