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

79.最长公共子串

时间:2018-03-11 17:41:51      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:turn   bsp   comm   mon   elf   ret   ring   def   longest   

def longestCommonSubstring(self, A, B):  
    # write your code here  
    if A == ‘‘ or B == ‘‘:  
        return 0  
    if len(A) >= len(B):  
        L, L1 = A[:], B[:]  
    else:  
        L, L1 = B[:], A[:]  
    L = [L[i:j] for i in range(len(L)) for j in range(1, len(L)+1) if i < j]  
    return max([len(i) for i in L if i in L1])  

 

79.最长公共子串

标签:turn   bsp   comm   mon   elf   ret   ring   def   longest   

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

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