2021-10-14 18:32
西南大学 Python 牛客659290085号:while True: try: a, b = input(), input() # a保存短,b保存长 if len(a) > len(b): a, b = b, a res = '' for i in range(0, len(a)): for j in range(i, len(a)): #应该是这样吧,不然字符串为1时取不到 if a[i:j+1] in b and j+1-i > len(res): res = a[i:j+1] print(res) except: break
0 点赞 评论 收藏
分享
关注他的用户也关注了: