[Swift]LeetCode521. 最长特殊序列 Ⅰ | Longest Uncommon Subsequence I
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公众号:山青咏芝(shanqingyongzhi)
➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/)
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址:https://www.cnblogs.com/strengthen/p/9812689.html
➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
Given a group of two strings, you need to find the longest uncommon subsequence of this group of two strings. The longest uncommon subsequence is defined as the longest subsequence of one of these strings and this subsequence should not be any subsequence of the other strings.
A subsequence is a sequence that can be derived from one sequence by deleting some characters without changing the order of the remaining elements. Trivially, any string is a subsequence of itself and an empty string is a subsequence of any string.
The input will be two strings, and the output needs to be the length of the longest uncommon subsequence. If the longest uncommon subsequence doesn't exist, return -1.
Example 1:
Input: "aba", "cdc" Output: 3 Explanation: The longest uncommon subsequence is "aba" (or "cdc"),
because "aba" is a subsequence of "aba",
but not a subsequence of any other strings in the group of two strings.
Note:
- Both strings' lengths will not exceed 100.
- Only letters from a ~ z will appear in input strings.
给定两个字符串,你需要从这两个字符串中找出最长的特殊序列。最长特殊序列定义如下:该序列为某字符串独有的最长子序列(即不能是其他字符串的子序列)。
子序列可以通过删去字符串中的某些字符实现,但不能改变剩余字符的相对顺序。空序列为所有字符串的子序列,任何字符串为其自身的子序列。
输入为两个字符串,输出最长特殊序列的长度。如果不存在,则返回 -1。
示例 :
输入: "aba", "cdc" 输出: 3 解析: 最长特殊序列可为 "aba" (或 "cdc")
说明:
- 两个字符串长度均小于100。
- 字符串中的字符仅含有 'a'~'z'。
8ms
1 class Solution { 2 func findLUSlength(_ a: String, _ b: String) -> Int { 3 //每个字符串的最长子序列为其本身 4 //最长特殊序列的长度必定为a.count 或者b.count或者-1,三者居其一。 5 if a == b {return -1} 6 else if a.count == b.count {return a.count} 7 else 8 { 9 return max(a.count,b.count) 10 } 11 } 12 }
8ms
1 import Foundation 2 3 class Solution { 4 func findLUSlength(_ a: String, _ b: String) -> Int { 5 if (a == b) { 6 return -1 7 } else { 8 return max(a.count,b.count) 9 } 10 } 11 }
12ms
1 class Solution { 2 func findLUSlength(_ a: String, _ b: String) -> Int { 3 let m = a.count 4 let n = b.count 5 6 if a == b { 7 return -1 8 }else if m > n { 9 return m 10 }else{ 11 return n 12 } 13 } 14 }
16ms
1 class Solution { 2 func findLUSlength(_ a: String, _ b: String) -> Int { 3 guard a != b else { 4 return -1 5 } 6 if a.count == 0 { 7 return b.count 8 } 9 if b.count == 1 { 10 return a.count 11 } 12 let longer = a.count > b.count ? Array(a) : Array(b) 13 let shorter = a.count > b.count ? Array(b) : Array(a) 14 var count = 0 15 var start = 0 16 var end = longer.count 17 while start < end { 18 while end > start { 19 if (String(shorter).range(of: String(longer[start..<end])) == nil) { 20 count = max(longer[start..<end].count, count) 21 } 22 end -= 1 23 } 24 start += 1 25 } 26 return count 27 } 28 }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了