javascript-problems-and-solutions icon indicating copy to clipboard operation
javascript-problems-and-solutions copied to clipboard

Third Dynamic Programming Problem

Open logicquest opened this issue 6 years ago • 0 comments
trafficstars

Line number 28 on longest-palindromic-subsequence.js

Expected: for (let i = 0; i < n - i + 1; i++) {

Actual: for (let i = 0; i < n - k + 1; i++) {

Error: k is undefined. Please change the code and push it.

logicquest avatar Dec 20 '18 21:12 logicquest