-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgcd_of_strings.go
More file actions
49 lines (36 loc) · 845 Bytes
/
gcd_of_strings.go
File metadata and controls
49 lines (36 loc) · 845 Bytes
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
package main
func GCDOfStrings(str1 string, str2 string) string {
if str1+str2 != str2+str1 {
return ""
}
x := gcd(len(str1), len(str2))
return str1[:x]
}
func gcd(a, b int) int {
for b != 0 {
a, b = b, a%b
}
return a
}
/*
1071. Greatest Common Divisor of Strings
Solved
Easy
Topics
Companies
Hint
For two strings s and t, we say "t divides s" if and only if s = 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: ""
Constraints:
1 <= str1.length, str2.length <= 1000
str1 and str2 consist of English uppercase letters.
*/