python 最长公共前缀

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

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

示例 1:

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

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

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

以下代码为python3

class Solution:
    def longestCommonPrefix(self, strs: List[str]) -> str:
        lens = len(strs)
        if lens <= 1 :
            return "".join(strs)
        tmp = []
        minl = 9999999999
        for i in range(0,lens) :
            tll = len(strs[i])
            if minl > tll:
                minl = tll
        if minl == 0 :
            return ""
        tmp.append(strs[0][0])
        j = 0
        while True :
            for i in range(1,lens) :
                if strs[i][j] == strs[0][j] :
                    continue
                else :
                    tmp.pop()
                    return ''.join(tmp)
            j += 1
            if j > minl-1 :
                return ''.join(tmp)
            tmp.append(strs[0][j])

 

你可能感兴趣的:(python)