LeetCode算法题
2020-12-13 04:09
标签:算法 while solution 个数 nbsp == 长度 turn find 1、给两个整数数组 A 和 B ,返回两个数组中公共的、长度最长的子数组的长度。 时间复杂度待优化 LeetCode算法题 标签:算法 while solution 个数 nbsp == 长度 turn find 原文地址:https://www.cnblogs.com/yangyongjie/p/11105224.htmlclass Solution {
public int findLength(int[] A, int[] B) {
int l=0;
int lena=A.length;
int lenb=B.length;
for(int i=0;i