解题思想:若两字符串不相同,可以选择较长的字符串作为最长特殊序列,显然它不会是较短的字符串的子序列。
class Solution(object):
def findLUSlength(self, a, b):
"""
:type a: str
:type b: str
:rtype: int
"""
if a == b:
return -1
else:
return max(len(a), len(b))
class Solution {
public:
int findLUSlength(string a, string b) {
if(a==b){
return -1;
}
else{
return max(a.length(),b.length());
}
}
};