RosettaCodeData/Task/Longest-common-subsequence/C++/longest-common-subsequence-2.cpp

4 lines
77 B
C++
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
LCS lcs;
auto s = lcs.Correspondence(s1, s2);
cout << s << endl;