Problem Description
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]) such that |nums[i] - nums[j]| == k and i != j.
Key Insights
- A pair (a, b) is considered unique if a != b and both are counted only once.
- If k is 0, we need to count elements that appear more than once.
- For k > 0, we can find pairs by checking for the existence of (num + k) for each num in the array.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
To solve the problem, we can utilize a hash table (or set) to store the frequency of each number in the array. We then iterate through the unique numbers and check for the existence of their complements (num + k for k > 0, and duplicates for k = 0) in the hash table. This allows us to efficiently count the unique k-diff pairs.