718. Maximum Length of Repeated Subarray
Description
Given two integer arrays nums1
and nums2
, return the maximum length of a subarray that appears in both arrays.
Example 1:
Input: nums1 = [1,2,3,2,1], nums2 = [3,2,1,4,7] Output: 3 Explanation: The repeated subarray with maximum length is [3,2,1].
Example 2:
Input: nums1 = [0,0,0,0,0], nums2 = [0,0,0,0,0] Output: 5 Explanation: The repeated subarray with maximum length is [0,0,0,0,0].
Constraints:
1 <= nums1.length, nums2.length <= 1000
0 <= nums1[i], nums2[i] <= 100
Solution
maximum-length-of-repeated-subarray.py
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)]
res = 0
for i in range(1, m + 1):
for j in range(1, n + 1):
if nums1[i - 1] == nums2[j - 1]:
dp[i][j] = 1 + dp[i - 1][j - 1]
res = max(res, dp[i][j])
return res
maximum-length-of-repeated-subarray.java
class Solution {
public int findLength(int[] A, int[] B) {
if(A == null||B == null) return 0;
int m = A.length;
int n = B.length;
int max = 0;
//dp[i][j] is the length of longest common subarray ending with nums[i] and nums[j]
int[][] dp = new int[m + 1][n + 1];
for(int i = 0;i <= m;i++){
for(int j = 0;j <= n;j++){
if(i == 0 || j == 0){
dp[i][j] = 0;
}
else{
if(A[i - 1] == B[j - 1]){
dp[i][j] = 1 + dp[i - 1][j - 1];
max = Math.max(max,dp[i][j]);
}
}
}
}
return max;
}
}