Longest common substring: Difference between revisions

Content added Content deleted
(Fix space)
(format)
Line 1,547: Line 1,547:
}
}


function Print-Lcs([String]$a, [String]$b) {
function Print-Lcs([String]$a, [String]$b)
{
return "lcs $a $b = $(lcs $a $b)"
return "lcs $a $b = $(lcs $a $b)"
}
}