RosettaCodeData/Task/Longest-common-subsequence/Common-Lisp/longest-common-subsequence-5.lisp

4 lines
101 B
Common Lisp
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
(coerce (lcs (coerce "thisisatest" 'list) (coerce "testing123testing" 'list)) 'string))))
"tsitest"