Skip to content

Commit 927c786

Browse files
committed
got rid of newline
1 parent 78a7ea0 commit 927c786

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

javascript/1143-Longest-Common-Subsequence.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ var longestCommonSubsequence = function (text1, text2) {
77
for (let i = 1; i <= m; i++) {
88
for (let j = 1; j <= n; j++) {
99
if (text1.charAt(i - 1) !== text2.charAt(j - 1)) {
10-
1110
table[i][j] = Math.max(table[i - 1][j], table[i][j - 1]);
1211
} else {
1312
table[i][j] = table[i - 1][j - 1] + 1;

0 commit comments

Comments
 (0)