php算法题目
给定一个数组arr,返回arr的最长无重复元素子数组的长度,无重复指的是所有数字都不相同。
子数组是连续的,比如[1,3,5,7,9]的子数组有[1,3],[3,5,7]等等,但是[1,3,7]不是子数组
实现过程:
/**
*
* @param arr int整型一维数组 the array [1,2,3,4,5,5,6,7]
* @return int整型
*/
function maxLength( $arr )
{
// write code here
// 数组有1个元素
if (count($arr) === 1) {
return 1;
}
// todo
}