Problem Description
Given two strings str1
and str2
, return the largest string x
such that x
divides both str1
and str2
. A string t
divides another string s
if s
can be constructed by concatenating t
one or more times.
Key Insights
- The greatest common divisor (GCD) of two strings can be determined by finding the longest substring that can be repeated to form both strings.
- The length of the desired substring must be a divisor of both
str1
andstr2
. - If the concatenation of
str1
andstr2
in both orders is equal, then the GCD string can be derived from the shorter string.
Space and Time Complexity
Time Complexity: O(n + m), where n and m are the lengths of str1
and str2
, respectively.
Space Complexity: O(1), as we are using a constant amount of extra space.
Solution
To solve the problem, we can follow these steps:
- Calculate the lengths of both strings.
- Determine the greatest common divisor (GCD) of the lengths of the two strings.
- Use this GCD to extract the potential GCD string from either
str1
orstr2
. - Check if this substring can form both
str1
andstr2
by verifying if both strings can be constructed by repeating the substring.