码迷,mamicode.com
首页 > 其他好文 > 详细

[leetcode 14] 最长公共前缀

时间:2019-01-31 13:22:29      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:res   字符串   col   公共前缀   type   car   存在   dog   return   

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

示例:

输入:["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] 最长公共前缀

标签:res   字符串   col   公共前缀   type   car   存在   dog   return   

原文地址:https://www.cnblogs.com/statlearning2019/p/10341206.html

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