美文网首页
LeetCode-1143-最长公共子序列

LeetCode-1143-最长公共子序列

作者: 阿凯被注册了 | 来源:发表于2020-10-10 00:46 被阅读0次
image.png

解题思路

Python3代码

class Solution:
    def longestCommonSubsequence(self, text1: str, text2: str) -> int:
        m = len(text1)
        n = len(text2)
        dp = [[0 for _ in range(n+1)] for _ in range(m+1)]
        for i in range(1, m+1):
            for j in range(1, n+1):
                if text1[i-1] == text2[j-1]:
                    dp[i][j] = dp[i-1][j-1] + 1
                else:
                    dp[i][j] = max(dp[i-1][j], dp[i][j-1])
        return dp[-1][-1]

相关文章

网友评论

      本文标题:LeetCode-1143-最长公共子序列

      本文链接:https://www.haomeiwen.com/subject/wfzhpktx.html