leetcode-最长公共前缀-python

class Solution:
    def longestCommonPrefix(self, strs):
        """
        :type strs: List[str]
        :rtype: str
        """
        if(not strs):
            return ''
        l=list()
        i=0
        len1=len(strs[0])
        for s in strs:
            if(len1>len(s)):
                len1=len(s)
        while i<=len1-1:
            tmp =strs[0][i]
            for s in strs:
                if s[i] != tmp:
                    return ''.join(l)
            l.append(tmp)
            i=i+1
        return ''.join(l)
            

你可能感兴趣的:(leetcode-最长公共前缀-python)