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

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

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

str_1 = input().strip()
str_2 = input().strip()

if len(str_1) > len(str_2):
    str_1, str_2 = str_2, str_1 # 1短 2长

if str_1 in str_2:
    print(str_1)
else:
    len_lcs = 0 # 嘴馋公共子串的长度
    str_lcs = '' # 第一个最长公共子串
    for i in range(len(str_1)):
        if i - len_lcs >= 0 and str_1[i - len_lcs:i + 1] in str_2:
            str_lcs = str_1[i - len_lcs:i + 1]
            len_lcs += 1
    print(str_lcs)


全部评论

相关推荐

ArisRobert:统一解释一下,第4点的意思是,公司按需通知员工,没被通知到的员工是没法去上班的,所以只要没被通知到,就自动离职。就是一种比较抽象的裁员。
点赞 评论 收藏
分享
喜欢走神的孤勇者练习时长两年半:池是池,发是发,我曾池,我现黑
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务