Maximum Length of Repeated Subarray
Given two integer arraysA
andB
, return the maximum length of an subarray that appears in both arrays.
Example 1:
Note:
1
<
= len(A), len(B)
<
= 1000
0
<
= A[i], B[i]
<
100
分析
初始化为0,如果不等就更新为0. 最后结果取某段max
Last updated