leetcode-521. 最长特殊序列 Ⅰ

521. 最长特殊序列 Ⅰ - 力扣(Leetcode)

脑筋急转弯

func findLUSlength(a string, b string) int {
    if a != b {
        return max(len(a), len(b))
    }

    return -1
}

func max(a,b int) int {
    if a > b {
        return a
    }

    return b
}
posted @ 2022-12-25 14:06  吴丹阳-V  阅读(10)  评论(0编辑  收藏  举报