Given two sequences, find the length of the longest common subsequence.

a=[1,1,1,1,1,2,3,1,4]
b=[2,3,0,0,9,5,4,1]
longest Common subsequence = [2,3,4]
                           = [2,3,1]
so,length=3

Solution Stats

29 Solutions

22 Solvers

Last Solution submitted on Feb 10, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...