532. K-diff Pairs in an Array
Medium
Given an array of integers nums
and an integer k
, return the number of unique k-diff pairs in the array.
A k-diff pair is an integer pair (nums[i], nums[j])
, where the following are true:
0 <= i, j < nums.length
i != j
nums[i] - nums[j] == k
Notice that |val|
denotes the absolute value of val
.
Example 1:
Example 2:
Example 3:
Constraints:
1 <= nums.length <= 10^4
-10^7 <= nums[i] <= 10^7
0 <= k <= 10^7
解ι‘
δ½Ώη¨ map θ¨ιζ―εζΈεεΊηΎη欑ζΈοΌε° k == 0 ηζ ζ³ε¦ε€εθηγ
Last updated