718. Maximum Length of Repeated Subarray
Given two integer arrays nums1
and nums2
, return the maximum length of a subarray that appears in both arrays.
Example 1:
Example 2:
Constraints:
1 <= nums1.length, nums2.length <= 1000
0 <= nums1[i], nums2[i] <= 100
Solution:
和LCS https://leetcode.com/problems/longest-common-subsequence/做法类似,如果当前两个string相等就把当前格子变成[i - 1][j - 1] + 1。不相等就保留0。
Last updated