class Solution: def maxLength(self , arr: List[int]) -> int: # write code here if len(arr) < 2: return len(arr) windows = {} res = 0 left = -1 for right in range(len(arr)): if arr[right] in windows: left = max(left, windows[arr[right]]) res = max(res, right - left) windows[arr[right]] = right return res
1

相关推荐

去B座二楼砸水泥地:不过也可以理解,这种应该没参加过秋招
点赞 评论 收藏
分享
牛客网
牛客企业服务