...

/

Challenge: Longest Common Subsequence of Three Sequences

Challenge: Longest Common Subsequence of Three Sequences

Solve the Longest Common Subsequence of Three Sequences Problem.

We'll cover the following...

Problem


Longest Common Subsequence of Three Sequences Problem

Compute the longest common subsequence of three sequences.

Input: Three sequences.

Output: Their longest common subsequence.


Given three sequences AA = ((a1a_{1}, a2a_{2},\ldots, ana_{n})), BB = ((b1b_{1}, b2,,bmb_{2},\ldots, b_{m})), and CC = ((c1c_{1}, c2,,clc_{2},\ldots, c_{l} ...