1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/字符串的最大公因子 [greatest-common-divisor-of-strings].html
2022-03-29 12:43:11 +08:00

36 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>对于字符串&nbsp;<code>s</code>&nbsp;<code>t</code>,只有在&nbsp;<code>s = t + ... + t</code><code>t</code> 自身连接 1 次或多次)时,我们才认定&nbsp;<code>t</code> 能除尽 <code>s</code>”。</p>
<p>给定两个字符串&nbsp;<code>str1</code>&nbsp;&nbsp;<code>str2</code>&nbsp;。返回 <em>最长字符串&nbsp;<code>x</code>,要求满足&nbsp;<code>x</code> 能除尽 <code>str1</code>&nbsp;<code>X</code> 能除尽 <code>str2</code></em></p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>str1 = "ABCABC", str2 = "ABC"
<strong>输出:</strong>"ABC"
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>str1 = "ABABAB", str2 = "ABAB"
<strong>输出:</strong>"AB"
</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>str1 = "LEET", str2 = "CODE"
<strong>输出:</strong>""
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= str1.length, str2.length &lt;= 1000</code></li>
<li><code>str1</code>&nbsp;&nbsp;<code>str2</code>&nbsp;由大写英文字母组成</li>
</ul>