LeetCode 718. Maximum Length of Repeated Subarray
Question
Given two integer arrays nums1
and nums2
, return the maximum length of a subarray that appears in both arrays.
Example 1:
1 | Input: nums1 = [1,2,3,2,1], nums2 = [3,2,1,4,7] |
Example 2:
1 | Input: nums1 = [0,0,0,0,0], nums2 = [0,0,0,0,0] |
Constraints:
1 <= nums1.length, nums2.length <= 1000
0 <= nums1[i], nums2[i] <= 100
Source: https://leetcode.com/problems/maximum-length-of-repeated-subarray/
Solution
The key idea of the transition equation is that a long common string (array) must contain short common strings (arrays). Thus, a long common string can be grown from a short common string.
We simplify the searching process by searching common prefix num[i:]
, so that we only need to move one end of the string (array). Also, common suffix has the same effect.
1 | // DP, prefix |
LeetCode 718. Maximum Length of Repeated Subarray
http://yenotes.org/2022/01/08/LeetCode-718-Maximum-Length-of-Repeated-Subarray/