Skip to content

Commit e62fc00

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

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
function gcdOfStrings(str1: string, str2: string): string {
2+
let [len1, len2] = [str1.length, str2.length];
3+
4+
function isDivisor(l: number): boolean {
5+
if (len1 % l || len2 % l) {
6+
return false;
7+
}
8+
9+
let [f1, f2] = [Math.floor(len1 / l), Math.floor(len2 / l)];
10+
11+
return (
12+
str1.slice(0, l).repeat(f1) == str1 &&
13+
str1.slice(0, l).repeat(f2) == str2
14+
);
15+
}
16+
17+
for (let l = Math.min(len1, len2); l > 0; l--) {
18+
if (isDivisor(l)) {
19+
return str1.slice(0, l);
20+
}
21+
}
22+
23+
return '';
24+
}

0 commit comments

Comments
 (0)