Happy Coding

This blog is for my memorandum about programming and English.

Happy Coding

This blog is for my memorandum

Entries from 2021-04-01 to 1 month

leetcode 718. Maximum Length of Repeated Subarray

Question Given two integer arrays A and B, return the maximum length of an subarray that appears in both arrays. https://leetcode.com/problems/maximum-length-of-repeated-subarray/ Code class Solution { public: int findLength(vector<int>& A, vec</int>…