1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-13 11:21: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

@@ -6,7 +6,7 @@
<li>选择整数<code>i</code><code>j</code><code>x</code><code>y</code>,满足<code>0 &lt;= i, j &lt; n</code><code>0 &lt;= x &lt; words[i].length</code><code>0 &lt;= y &lt; words[j].length</code><strong>交换 </strong>字符 <code>words[i][x]</code><code>words[j][y]</code></li>
</ul>
<p>返回一个整数,表示在执行一些操作后,<code>words</code> 中可以包含的回文字符串<strong>最大 </strong>数量。</p>
<p>返回一个整数,表示在执行一些操作后,<code>words</code> 中可以包含的<span data-keyword="palindrome-string">回文串</span><strong>最大 </strong>数量。</p>
<p><strong>注意:</strong>在操作过程中,<code>i</code><code>j</code> 可以相等。</p>