Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 708 Bytes

1143.md

File metadata and controls

31 lines (22 loc) · 708 Bytes

[1143] Longest Common Subsequence

Description

link


Solution

see Code


Code

Complexity T : O(MN) M : O(MN)

class Solution:
    def longestCommonSubsequence(self, text1: str, text2: str) -> int:
        m, n = len(text1), 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[m][n]