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

4 lines
101 B
Common Lisp
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(coerce (lcs (coerce "thisisatest" 'list) (coerce "testing123testing" 'list)) 'string))))
"tsitest"