傻傻的用hashmap统计字符串出现次数,结果还错着,看一下评论才发现自己理解错了。
Go版本:
func findLUSlength(a string, b string) int {
if a==b{
return -1
}
return max(len(a),len(b));
}
func max(a int,b int)( int){
if a>b{
return a
}else{
return b;
}
}
傻傻的用hashmap统计字符串出现次数,结果还错着,看一下评论才发现自己理解错了。
Go版本:
func findLUSlength(a string, b string) int {
if a==b{
return -1
}
return max(len(a),len(b));
}
func max(a int,b int)( int){
if a>b{
return a
}else{
return b;
}
}
本文标题:2022-03-04 521. 最长特殊序列 Ⅰ
本文链接:https://www.haomeiwen.com/subject/rdiprrtx.html
网友评论