1071. 字符串的最大公因子
1071. Greatest Common Divisor of Strings
题目描述
对于字符串?S 和?T,只有在 S = T + ... + T(T?与自身连接 1 次或多次)时,我们才认定?“T 能除尽 S”。
返回字符串?X,要求满足?X 能除尽 str1 且?X 能除尽 str2。
每日一算法2019/6/17Day 45LeetCode1071. Greatest Common Divisor of Strings
示例 1:
示例 2:
示例 3:
提示:
Java 实现
参考资料
LeetCode 1071. 字符串的最大公因子(Greatest Common Divisor of Strings) 45
原文:https://www.cnblogs.com/hglibin/p/11042537.html