Skip to main content

718. Maximum Length of Repeated Subarray

https://leetcode.com/problems/maximum-length-of-repeated-subarray/

Python

Bottom Up DP

class Solution:
def findLength(self, nums1: List[int], nums2: List[int]) -> int:
m, n = len(nums1), len(nums2)

dp = [[0]*(n+1) for _ in range(m+1)]

for i in range(1, m+1):
for j in range(1, n+1):
if nums1[i-1] == nums2[j-1]:

dp[i][j] = dp[i-1][j-1] + 1

return max([max(row) for row in dp])