题解 | #查找两个字符串a,b中的最长公共子串#

查找两个字符串a,b中的最长公共子串

https://www.nowcoder.com/practice/181a1a71c7574266ad07f9739f791506

a = input()
b = input()

l = []
maxl = ''

if len(a) > len(b):
    a, b = b, a

for i in range(len(a)):
    for j in range(len(a), i, -1):
        if a[i:j] in b and len(a[i:j]) > len(maxl):
                maxl = a[i:j]

print(maxl)

按顺序从长字串逐渐缩小范围

全部评论

相关推荐

像好涩一样好学:这公司我也拿过 基本明确周六加班 工资还凑活 另外下次镜头往上点儿
点赞 评论 收藏
分享
我已成为0offer的糕手:别惯着,胆子都是练出来的,这里认怂了,那以后被裁应届被拖工资还敢抗争?
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务