美文网首页
2022-03-04 521. 最长特殊序列 Ⅰ

2022-03-04 521. 最长特殊序列 Ⅰ

作者: 16孙一凡通工 | 来源:发表于2022-03-05 09:27 被阅读0次

    傻傻的用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