Longest common subsequence: Difference between revisions

m
Fix typos/capitalization
m (Fix typos/capitalization)
Line 1,942:
 
=={{header|Phix}}==
If you want this to work with (ut8futf8) unicodeUnicode text, just chuck the inputs through utf8_to_utf32() first (and the output through utf32_to_utf8()).
<lang Phix>function lcs(sequence a, b)
sequence res = ""
Anonymous user