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

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

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

s1 = input().lower()
s2 = input().lower()

p = 0
if len(s1) > len(s2):
    s1, s2 = s2, s1

s = ''
for i in range(len(s1)):
    for j in range(i, len(s1)):
        if s1[i : j + 1] in s2 and j + 1 - i > p:
            p = j + 1 - i
            s = s1[i : j + 1]
            
print(s)

全部评论

相关推荐

AaronRuan:看到了好多开奖了,不知道为啥自己也有点激动,真的替你们感到高兴啊
点赞 评论 收藏
分享
11-01 20:03
已编辑
门头沟学院 算法工程师
Amazarashi66:这种也是幸存者偏差了,拿不到这个价的才是大多数
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务