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

78.公共子串

时间:2018-03-11 17:40:30      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:log   range   min   pos   ret   tco   prefix   com   str   

Ldef longestCommonPrefix(self, strs):  
    # write your code here  
    if ‘‘ in strs or strs == []:  
        return ‘‘  
    s, n = ‘‘, ‘‘  
    for j in range(min([len(i) for i in strs])):  
        for i in range(len(strs)):  
            s += strs[i][j]  
        if s == s[0]*len(s):  
            n += s[0]  
        s = ‘‘  
    return n  

 

78.公共子串

标签:log   range   min   pos   ret   tco   prefix   com   str   

原文地址:https://www.cnblogs.com/tingway/p/8544003.html

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