1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-12 10:51: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,6 +1,6 @@
<p>给你两个字符串&nbsp;<code>a</code>&nbsp;&nbsp;<code>b</code>,请返回 <em>这两个字符串中 <strong>最长的特殊序列</strong>&nbsp;</em> 的长度。如果不存在,则返回 <code>-1</code>&nbsp;</p>
<p><strong>「最长特殊序列」</strong>&nbsp;定义如下:该序列为&nbsp;<strong>某字符串独有的最长子序列(即不能是其他字符串的子序列)</strong>&nbsp;</p>
<p><strong>「最长特殊序列」</strong>&nbsp;定义如下:该序列为&nbsp;<strong>某字符串独有的最长<span data-keyword="subsequence-array">子序列</span>(即不能是其他字符串的子序列)</strong>&nbsp;</p>
<p>字符串&nbsp;<code>s</code>&nbsp;的子序列是在从&nbsp;<code>s</code>&nbsp;中删除任意数量的字符后可以获得的字符串。</p>