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

Interleaving String

Given three strings: s1, s2, and s3. Determine if s3 is an interleaving of s1 and s2. An interleaving of two strings s and t is a string containing all characters of both s and t, and the order of characters in the interleaved string should be the same as the order of characters in the original strings.

Constraints:

  • 0 <= s1.length, s2.length <= 100
  • 0 <= s3.length <= 200
  • s1, s2, and s3 consist of lowercase English letters.

Examples:

Input: s1 = "aabcc", s2 = "dbbca", s3 = "aadbbcbcac"

Output: true

Explanation: s3 is an interleaving of s1 and s2 because it contains all characters of both s1 and s2, and the order of characters in the interleaved string is the same as the order of characters in the original strings.

Input: s1 = "aabcc", s2 = "dbbca", s3 = "aadbbbaccc"

Output: false

Explanation: s3 is not an interleaving of s1 and s2 because it does not contain all characters of both s1 and s2 in the correct order.

Input: s1 = "", s2 = "", s3 = ""

Output: true

Explanation: An empty string is an interleaving of two empty strings.

Solutions

Dynamic Programming

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

The dynamic programming approach works by creating a 2D table dp where dp[i][j] is true if the first i characters of s1 and the first j characters of s2 can be interleaved to form the first i + j characters of s3. The base cases are when i or j is 0, in which case we only need to check if the corresponding substring of s1 or s2 matches the substring of s3. For the recursive case, we check if the current character of s1 or s2 matches the current character of s3, and if the previous characters can be interleaved.

function isInterleave(s1, s2, s3) {
  let m = s1.length,
    n = s2.length;
  if (m + n !== s3.length) return false;
  let dp = Array(m + 1)
    .fill(0)
    .map(() => Array(n + 1).fill(false));
  dp[0][0] = true;
  for (let i = 1; i <= m; i++)
    dp[i][0] = dp[i - 1][0] && s1[i - 1] === s3[i - 1];
  for (let j = 1; j <= n; j++)
    dp[0][j] = dp[0][j - 1] && s2[j - 1] === s3[j - 1];
  for (let i = 1; i <= m; i++)
    for (let j = 1; j <= n; j++)
      dp[i][j] =
        (dp[i - 1][j] && s1[i - 1] === s3[i + j - 1]) ||
        (dp[i][j - 1] && s2[j - 1] === s3[i + j - 1]);
  return dp[m][n];
}

Difficulty: Medium

Category: Dynamic Programming

Frequency: High

Company tags:

GoogleAmazonMicrosoft