-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1071_Greatest_Common_Divisor_of_Strings.py
More file actions
54 lines (31 loc) · 1.07 KB
/
Copy path1071_Greatest_Common_Divisor_of_Strings.py
File metadata and controls
54 lines (31 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"""
For two strings s and t, we say "t divides s" if and only if s = t + t + t + ... + t + t (i.e., t is concatenated with itself one or more times).
Given two strings str1 and str2, return the largest string x such that x divides both str1 and str2.
Example 1:
Input: str1 = "ABCABC", str2 = "ABC"
Output: "ABC"
Example 2:
Input: str1 = "ABABAB", str2 = "ABAB"
Output: "AB"
Example 3:
Input: str1 = "LEET", str2 = "CODE"
Output: ""
Example 4:
Input: str1 = "AAAAAB", str2 = "AAA"
Output: ""
Constraints:
1 <= str1.length, str2.length <= 1000
str1 and str2 consist of English uppercase letters.
"""
class Solution:
def gcdOfStrings(self, str1: str, str2: str) -> str:
len1 , len2 = len(str1) , len(str2)
def isDivisor(l):
if len1 % l or len2 % l:
return False
f1, f2 = len1 // l , len2 // l
return str1[:l] * f1 == str1 and str1[:l] * f2 == str2
for l in range(min(len1, len2) , 0 , -1):
if isDivisor(l):
return str1[:l]
return ""