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

存量题库数据更新

This commit is contained in:
2023-12-09 18:42:21 +08:00
parent a788808cd7
commit c198538f10
10843 changed files with 288489 additions and 248355 deletions

View File

@@ -1,6 +1,6 @@
<p>给定字符串列表&nbsp;<code>strs</code> ,返回 <em>它们<strong>最长的特殊序列</strong></em> 。如果最长特殊序列不存在,返回 <code>-1</code></p>
<p>给定字符串列表&nbsp;<code>strs</code> ,返回<strong>最长的特殊序列</strong>&nbsp;的长度。如果最长特殊序列不存在,返回 <code>-1</code></p>
<p><strong>最长特殊序列</strong> 定义如下:该序列为某字符串&nbsp;<strong>独有的最长子序列(即不能是其他字符串的子序列)</strong></p>
<p><strong>特殊序列</strong> 定义如下:该序列为某字符串 <strong>独有的子序列(即不能是其他字符串的子序列)</strong></p>
<p>&nbsp;<code>s</code>&nbsp;&nbsp;<strong>子序列</strong>可以通过删去字符串&nbsp;<code>s</code>&nbsp;中的某些字符实现。</p>