521:最长特殊序列 Ⅰ
This commit is contained in:
parent
3e67072a6c
commit
4bcef5dde7
@ -0,0 +1,64 @@
|
||||
//给你两个字符串 a 和 b,请返回 这两个字符串中 最长的特殊序列 的长度。如果不存在,则返回 -1 。
|
||||
//
|
||||
// 「最长特殊序列」 定义如下:该序列为 某字符串独有的最长子序列(即不能是其他字符串的子序列) 。
|
||||
//
|
||||
// 字符串 s 的子序列是在从 s 中删除任意数量的字符后可以获得的字符串。
|
||||
//
|
||||
//
|
||||
// 例如,"abc" 是 "aebdc" 的子序列,因为删除 "aebdc" 中斜体加粗的字符可以得到 "abc" 。 "aebdc" 的子序列还包括
|
||||
//"aebdc" 、 "aeb" 和 "" (空字符串)。
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
// 示例 1:
|
||||
//
|
||||
//
|
||||
//输入: a = "aba", b = "cdc"
|
||||
//输出: 3
|
||||
//解释: 最长特殊序列可为 "aba" (或 "cdc"),两者均为自身的子序列且不是对方的子序列。
|
||||
//
|
||||
// 示例 2:
|
||||
//
|
||||
//
|
||||
//输入:a = "aaa", b = "bbb"
|
||||
//输出:3
|
||||
//解释: 最长特殊序列是 "aaa" 和 "bbb" 。
|
||||
//
|
||||
//
|
||||
// 示例 3:
|
||||
//
|
||||
//
|
||||
//输入:a = "aaa", b = "aaa"
|
||||
//输出:-1
|
||||
//解释: 字符串 a 的每个子序列也是字符串 b 的每个子序列。同样,字符串 b 的每个子序列也是字符串 a 的子序列。
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
// 提示:
|
||||
//
|
||||
//
|
||||
// 1 <= a.length, b.length <= 100
|
||||
// a 和 b 由小写英文字母组成
|
||||
//
|
||||
// Related Topics 字符串 👍 182 👎 0
|
||||
|
||||
package leetcode.editor.cn;
|
||||
|
||||
//521:最长特殊序列 Ⅰ
|
||||
public class LongestUncommonSubsequenceI {
|
||||
public static void main(String[] args) {
|
||||
Solution solution = new LongestUncommonSubsequenceI().new Solution();
|
||||
|
||||
}
|
||||
|
||||
//leetcode submit region begin(Prohibit modification and deletion)
|
||||
class Solution {
|
||||
public int findLUSlength(String a, String b) {
|
||||
return a.equals(b) ? -1 : Math.max(a.length(), b.length());
|
||||
}
|
||||
}
|
||||
//leetcode submit region end(Prohibit modification and deletion)
|
||||
}
|
||||
|
@ -0,0 +1,44 @@
|
||||
<p>给你两个字符串 <code>a</code> 和 <code>b</code>,请返回 <em>这两个字符串中 <strong>最长的特殊序列</strong> </em> 的长度。如果不存在,则返回 <code>-1</code> 。</p>
|
||||
|
||||
<p><strong>「最长特殊序列」</strong> 定义如下:该序列为 <strong>某字符串独有的最长子序列(即不能是其他字符串的子序列)</strong> 。</p>
|
||||
|
||||
<p>字符串 <code>s</code> 的子序列是在从 <code>s</code> 中删除任意数量的字符后可以获得的字符串。</p>
|
||||
|
||||
<ul>
|
||||
<li>例如,<code>"abc"</code> 是 <code>"aebdc"</code> 的子序列,因为删除 <code>"a<em><strong>e</strong></em>b<strong><em>d</em></strong>c"</code> 中斜体加粗的字符可以得到 <code>"abc"</code> 。 <code>"aebdc"</code> 的子序列还包括 <code>"aebdc"</code> 、 <code>"aeb"</code> 和 <code>""</code> (空字符串)。</li>
|
||||
</ul>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong> a = "aba", b = "cdc"
|
||||
<strong>输出:</strong> 3
|
||||
<strong>解释:</strong> 最长特殊序列可为 "aba" (或 "cdc"),两者均为自身的子序列且不是对方的子序列。</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>a = "aaa", b = "bbb"
|
||||
<strong>输出:</strong>3
|
||||
<strong>解释:</strong> 最长特殊序列是 "aaa" 和 "bbb" 。
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 3:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>a = "aaa", b = "aaa"
|
||||
<strong>输出:</strong>-1
|
||||
<strong>解释:</strong> 字符串 a 的每个子序列也是字符串 b 的每个子序列。同样,字符串 b 的每个子序列也是字符串 a 的子序列。
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>提示:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><code>1 <= a.length, b.length <= 100</code></li>
|
||||
<li><code>a</code> 和 <code>b</code> 由小写英文字母组成</li>
|
||||
</ul>
|
||||
<div><div>Related Topics</div><div><li>字符串</li></div></div><br><div><li>👍 182</li><li>👎 0</li></div>
|
Loading…
Reference in New Issue
Block a user