219. Contains Duplicates II
Given an array of integers and an integer
k
, find out whether there are two distinct indicesi
andj
in the array such that nums[i] = nums[j] and the absolute difference betweeni
andj
is at mostk
.
给一个数组, 看nums[i]
附近的k
个数里, 是否有相同的. 也就是说, 如果存在nums[i] == nums[j]
和abs(j-i) <= k
则返回True
否则返回 False
.
思路
从前往后去扫描一个数组, 用一个hashtable
去记住每个数组出现的index
. 如果有相同的, 则看hashtable
中的记录和当前的index
的是否再k
以内, 如果是, 就返回True
. 否则更新hashtable
中的值.
Code
1 | def containsDuplicate(nums, k): |
时间复杂度
$O(n)$