...

/

Distinct Subsequence Pattern Matching

Distinct Subsequence Pattern Matching

Let's solve the Distinct Subsequence Pattern Matching problem using Dynamic Programming.

Statement

Given two strings, str1 and str2, return the number of times str2 appears in str1 as a subsequence.

Note: A string XX is a subsequence of string YY if deleting some number of characters from YY results in the string XX.

Let’s assume that you have two strings as follows:

  • str1 = "bbagbag"
  • str2 = "bag"

In this example, str2 appears 77 times in str1 as a subsequence:

  1. bbagbag
  2. bbagbag
  3. bbagbag
  4. bbagbag
  5. bbagbag
  6. bbagbag
  7. bbagbag

Constraints:

  • 1 \leq str1.length, str2.length \leq 500
  • str1.length \geq str2.length
  • str1 and str2 consist of lowercase English letters

Examples

Access this course and 1400+ top-rated courses and projects.