Searched refs:lcs (Results 1 – 1 of 1) sorted by relevance
80 val lcs = Array(n + 1) { IntArray(m + 1) } in getDiff() constant84 lcs[i][j] = lcs[i + 1][j + 1] + 1 in getDiff()86 lcs[i][j] = max(lcs[i + 1][j], lcs[i][j + 1]) in getDiff()113 if (lcs[i + 1][j] >= lcs[i][j + 1]) { in getDiff()