Skip to content

Commit 74e4a87

Browse files
committed
Create: 1071-greatest-common-divisor-of-strings.rs
1 parent ee7a3bc commit 74e4a87

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
impl Solution {
2+
pub fn gcd_of_strings(str1: String, str2: String) -> String {
3+
let (len1, len2) = (str1.len(), str2.len());
4+
5+
for l in (1..=usize::min(len1, len2)).rev() {
6+
if Self::is_divisor(&str1, &str2, len1, len2, l) {
7+
return str1[..l].to_string();
8+
}
9+
}
10+
11+
"".to_string()
12+
}
13+
14+
pub fn is_divisor(str1: &String, str2: &String, len1: usize, len2: usize, l: usize) -> bool {
15+
if len1 % l != 0 || len2 % l != 0 {
16+
return false;
17+
}
18+
let (f1, f2) = (len1 / l, len2 / l);
19+
str1[..l].repeat(f1) == *str1 && str1[..l].repeat(f2) == *str2
20+
}
21+
}

0 commit comments

Comments
 (0)