Intervue featured on Shark TankIntervue featured on Shark Tank - mobile banner

Longest Common Subsequence

Given two sequences, find the length of their longest common subsequence. A subsequence is a sequence that appears in the same relative order, but not necessarily contiguous.

Constraints:

  • 1 <= text1.length, text2.length <= 1000

Examples:

Input: text1 = "abcde", text2 = "ace"

Output: 3

Explanation: The longest common subsequence is "ace"

Solutions

Dynamic Programming

Time: O(m*n)Space: O(m*n)

The dynamic programming approach involves creating a 2D array dp where dp[i][j] represents the length of the longest common subsequence of the first i characters of text1 and the first j characters of text2. The final answer is stored in dp[m][n].


function longestCommonSubsequence(text1, text2) {
  let m = text1.length, n = text2.length;
  let dp = Array(m + 1).fill(0).map(() => Array(n + 1).fill(0));
  for (let i = 1;
  i <= m;
  i++) {
    for (let j = 1;
    j <= n;
    j++) {
      if (text1[i - 1] === text2[j - 1]) {
        dp[i][j] = dp[i - 1][j - 1] + 1;
      }
      else {
        dp[i][j] = Math.max(dp[i - 1][j], dp[i][j - 1]);
      }
    }
    return dp[m][n];
  }

Difficulty: Medium

Category: Dynamic Programming

Frequency: High

Company tags:

GoogleAmazonMicrosoft