Return the LCS distance between strings first (length n) and second (length m), computed as |n| + |m| - 2 * |LCS(first, second)|, with min = 0 max = n + m
|n| + |m| - 2 * |LCS(first, second)|
the first string to compare.
the second string to compare.