Longest common substring: Difference between revisions

m
(add Refal)
Line 1,097:
=={{header|EasyLang}}==
 
<syntaxhighlight lang=easylang>
func$ lcs a$ b$ .
if a$ = "" or b$ = ""
Line 1,114:
.
.
b$ = substr b$ 2 -19999
.
return max$
2,069

edits