
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] |
|---|
Notice that |val| denotes the absolute value of val .
1 <= nums.length <= 10 ^4-10 ^7 <= nums[i] <= 10 ^70 <= k <= 10 ^7