温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

leetcode--最长公共前缀

发布时间:2020-06-25 12:35:43 来源:网络 阅读:491 作者:ading2016 栏目:编程语言

编写一个函数来查找字符串数组中的最长公共前缀。

如果不存在公共前缀,返回空字符串 ""

示例 1:

输入: ["flower","flow","flight"]输出: "fl"

示例 2:

输入: ["dog","racecar","car"]输出: ""解释: 输入不存在公共前缀。

说明:

所有输入只包含小写字母 a-z 。

class Solution:
    def longestCommonPrefix(self, strs: List[str]) -> str:
        res = ''
        if strs:
            l = list(map(len, strs))
            l.sort()
            list1 = []
            for i in range(l[0]):
                for s in strs:
                    list1.append(s[i])
                if len(set(list1)) == 1:
                    res += strs[0][i]
                    list1.clear()
                    continue
                else:
                    break          
        return res

执行用时 : 76 ms, 在Longest Common Prefix的Python3提交中击败了26.44% 的用户

内存消耗 : 13.1 MB, 在Longest Common Prefix的Python3提交中击败了91.31% 的用户


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI