1794. Count Pairs of Equal Substrings With Minimum Difference
https://leetcode.com/problems/count-pairs-of-equal-substrings-with-minimum-difference
Description
You are given two strings firstString
and secondString
that are 0-indexed and consist only of lowercase English letters. Count the number of index quadruples (i,j,a,b)
that satisfy the following conditions:
0 <= i <= j < firstString.length
0 <= a <= b < secondString.length
The substring of
firstString
that starts at theith
character and ends at thejth
character (inclusive) is equal to the substring ofsecondString
that starts at theath
character and ends at thebth
character (inclusive).j - a
is the minimum possible value among all quadruples that satisfy the previous conditions.
Return the number of such quadruples.
Example 1:
Example 2:
Constraints:
1 <= firstString.length, secondString.length <= 2 * 105
Both strings consist only of lowercase English letters.
ac
Last updated