算法收集 2019/07/262019/04/25 作者 feng 这是算法收集板 最大公共子序列(Longest CommonSubstring, LCS)Python版 def lcs(x, y): matrix = [''] * (len(x) + 1) for index_x in range(len(matrix)):[......]继续阅读