hacktoberfest2021 icon indicating copy to clipboard operation
hacktoberfest2021 copied to clipboard

Maximum Length of Repeated Subarray- Dynamic Programming in Python

Open Ratna04priya opened this issue 3 years ago • 0 comments

Problem Statement- 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].

Please assign it to me.

Ratna04priya avatar Oct 02 '21 15:10 Ratna04priya