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 both of the following are true:
However, the problem should state explicitly that if you found a pair (x, y), and then you found (y, x), then you should not count the last one since it is considered to be the same pair as the previous one.