码迷,mamicode.com
首页 > 编程语言 > 详细

python查找最长公共前缀

时间:2018-10-09 13:58:25      阅读:323      评论:0      收藏:0      [点我收藏+]

标签:pytho   strong   返回   span   nbsp   最长公共前缀   min   说明   函数   

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

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

示例 1:

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

示例 2:

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

说明:

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

class Solution:
    def longestCommonPrefix(self, strs):
        """
        :type strs: List[str]
        :rtype: str
        """
        if not strs:
            return ‘‘
        s1 = min(strs)
        s2 = max(strs)
        for i,j in  enumerate(s1):
            if j != s2[i]:
                return s1[:i]
        return s1
if __name__ == __main__:
    s=Solution()
    print(s.longestCommonPrefix(["flower","flow","flight"]))

 

python查找最长公共前缀

标签:pytho   strong   返回   span   nbsp   最长公共前缀   min   说明   函数   

原文地址:https://www.cnblogs.com/qiuyuyu/p/9759811.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!