LeetCode: Minimum ASCII Delete Sum for Two Strings Solution
Modified version of Longest Common Subsequence problemApproach
Pseudo
1result = totalAscii(s1, s2) - 2 * lcsInAscii(s1, s2)
Implementation
1const lcsInAscii = function (text1, text2) {2 const memo = Array.from({ length: text1.length + 1 }, _ =>3 Array(text2.length + 1).fill(null)4 )56 const recursion = (m, n) => {7 if (memo[m][n] !== null) return memo[m][n]89 if (m === 0 || n === 0) return (memo[m][n] = 0)1011 if (text1[m - 1] === text2[n - 1])12 return (memo[m][n] = text1[m - 1].charCodeAt(0) + recursion(m - 1, n - 1))1314 return (memo[m][n] = Math.max(recursion(m, n - 1), recursion(m - 1, n)))15 }1617 return recursion(text1.length, text2.length)18}1920var minimumDeleteSum = function (s1, s2) {21 let totalAscii = (s1 + s2)22 .split("")23 .reduce((acc, el) => acc + el.charCodeAt(0), 0)2425 return totalAscii - 2 * lcsInAscii(s1, s2)26}
References
Similar problems
Edit Distance
Longest Increasing Subsequence
Delete Operation for Two Strings
Comments
Loading comments...
Tags
leetcode
string
recursion
dynamic programming
Apply and earn a $2,500 bonus once you're hired on your first job!
Clients from the Fortune 500 to Silicon Valley startups
Choose your own rate, get paid on time
From hourly, part-time, to full-time positions
Flexible remote working environment
A lot of open JavaScript jobs!!
Fact corner: Referred talent are 5x more likely to pass the Toptal screening process than the average applicant.
Still hesitate? Read HoningJS author's guide on dealing with Toptal interview process.
Next Post
InterviewBit: Self Permutation
Count number of letters
Previous Post
LeetCode: Minimum Add to Make Parentheses Valid
Maintain balance, and yes, also naming variables