class Solution { public: /** * * @param arr int整型vector the array * @return int整型 */ int maxLength(vector<int>& arr) { // write code here unordered_map<int, int> is_key; // hash_map记录已有元素 int len = 0, tmp = 0; for(int i = 0...