1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-13 03:11:42 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

批量更新数据

This commit is contained in:
2025-01-09 20:29:41 +08:00
parent 04ecea043d
commit 48cdd06c2b
5053 changed files with 156164 additions and 135322 deletions

View File

@@ -1,4 +1,4 @@
<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>s</code>&nbsp;<code>t</code>,只有在&nbsp;<code>s = t + t + t + ... + 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><code>x</code> 能除尽 <code>str2</code></em></p>