Skip to content

Commit 12556ac

Browse files
author
Rubinder25
committed
removed unused variable
1 parent 612faf7 commit 12556ac

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

medium/fewest_insertions_palindrome/fewest_insertions_palindrome.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ function longest_common_subsequence(s1, s2, i, j) {
2121
function longest_common_subsequenceDP(s1, s2) {
2222
let lcs = Array(s1.length + 1).fill(0);
2323
lcs = lcs.map(() => Array(s2.length + 1).fill(0));
24-
let subString = '';
2524

2625
for (let i = 0; i <= s1.length; i++) {
2726
for (let j = 0; j <= s2.length; j++) {

0 commit comments

Comments
 (0)