You are given two strings S
and T
, such that length of S
is greater than the length of T
.
Then a substring of S
is defined as a sequence of characters which appear consecutively in S
.
Find the total number of distinct substrings of M
such that T
is a substring of M
One line containing strings S
and T
separated by a space.
One line containing the number of distinct substrings of M
such that T
is a substring of M
0 < Length(S), Length(T) < 100
Suppose the string S
is abcc. Then the distinct substrings of S
are
a, b, c, ab, bc, cc, abc, bcc, abcc