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

14. 最长公共前缀

时间:2019-01-19 17:37:01      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:type   common   style   前缀   com   Fix   14.   for   方法   

14. 最长公共前缀

 

方法一

import itertools
class Solution(object):
    def longestCommonPrefix(self, strs):
        """
        :type strs: List[str]
        :rtype: str
        """
        prefix=""
        for i in itertools.izip(*strs):
            s= "".join(i)
            if len(s)!=s.count(s[0]):
                break
            prefix+=s[0]
        return prefix

 

14. 最长公共前缀

标签:type   common   style   前缀   com   Fix   14.   for   方法   

原文地址:https://www.cnblogs.com/xiao-xue-di/p/10292204.html

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