Longest common substring: Difference between revisions

Content deleted Content added
Blek (talk | contribs)
Blek (talk | contribs)
Line 1,001:
$continue = ($i -lt $is.Length) -and ($j -lt $js.Length)
}
$p, $size = $i, 0
while ($continue) {
if ($is.Chars($i) -ne $js.Chars($j)) {break}