★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公众号:山青咏芝(shanqingyongzhi)
➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/)
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址:http://www.javashuo.com/article/p-gqcxogie-me.html
➤若是连接不是山青咏芝的博客园地址,则多是爬取做者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持做者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★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.git
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.github
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:app
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:this
给定两个字符串,你须要从这两个字符串中找出最长的特殊序列。最长特殊序列定义以下:该序列为某字符串独有的最长子序列(即不能是其余字符串的子序列)。spa
子序列能够经过删去字符串中的某些字符实现,但不能改变剩余字符的相对顺序。空序列为全部字符串的子序列,任何字符串为其自身的子序列。code
输入为两个字符串,输出最长特殊序列的长度。若是不存在,则返回 -1。htm
示例 :blog
输入: "aba", "cdc" 输出: 3 解析: 最长特殊序列可为 "aba" (或 "cdc")
说明:
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 }