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
Problem Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers23
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2816 Solvers
-
Return unique values without sorting
1011 Solvers
-
1538 Solvers
-
283 Solvers
-
Double all elements in the array
2354 Solvers
More from this Author174
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!