[leetcode 14] 最长公共前缀

Posted statlearning2019

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[leetcode 14] 最长公共前缀相关的知识,希望对你有一定的参考价值。

写一个函数可以查找字符串中的最长公共字符。

示例:

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

输出:"fl"

 

输入:["dog","racecar","car"]

输出:" " (不存在公共的字符串)

 

代码:

class Solution:
    def longestCommonPrefix(self,strs):
          """
            :type strs: List[str]
            :rtype:  str
          """

            if len(strs) == 0:
              return ""
            
              prefix=""
              length=1

             while length <= min([len(s) for s in strs]):
                   for i in range(1,len(strs)):
                        if strs[i][:length] != strs[i-1][:length]:
                            return prefix
                   result = strs[0][:length]
                   length +=1
             return prefix                           
           

 

以上是关于[leetcode 14] 最长公共前缀的主要内容,如果未能解决你的问题,请参考以下文章

leetcode14最长公共前缀

[leetcode 14] 最长公共前缀

leetCode第14题——最长公共前缀

LeetCode 14. 最长公共前缀

LeetCode:最长公共前缀14

Leetcode 14 最长公共前缀