lintcode 78. 最长公共前缀

难度:中等

1. Descriprion

lintcode 78. 最长公共前缀_第1张图片
78. 最长公共前缀

2. Solution

注意特殊情况:

  1. strs = ""
  2. strs中有""
class Solution:
    """
    @param strs: A list of strings
    @return: The longest common prefix
    """
    def longestCommonPrefix(self, strs):
        # write your code here
        if len(strs)==0:
            return ""
        lens = [len(word) for word in strs]
        if min(lens)==0:
            return ""
            
        for i in range(min(lens)):
            c = strs[0][i]
            for word in strs:
                if word[i]!=c:
                    return strs[0][:i]
        return strs[0][:i+1]

3. Reference

  1. https://www.lintcode.com/problem/longest-common-prefix/description

你可能感兴趣的:(lintcode 78. 最长公共前缀)