C++ Solution to Leetcode 532. K-diff Pairs in an Array
Problem Statement
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] ...
nhutnguyen.hashnode.dev4 min read