The first line of input contains a single integer T, representing the number of test cases or queries to be run.
Then the T test cases follow:
The first line of each test case contains two single space-separated integers 'N', and 'K', denoting the size of the array 'arr' and the distance respectively.
The second line of each test case contains 'N' single space-separated integers, elements of the array.
For each test case, print “true” if the array contains any duplicate element within the 'K' distance from each other, otherwise, print "false".
Result for each test case will be printed in a separate line.
You do not need to print anything, it has already been taken care of. Just implement the given function.
1 <= T <= 10
1 <= N <= 10^5
1 <= K <= 10^5
-10^9 <= arr[i] <= 10^9
Time Limit: 1sec
Longest Subarray With Zero Sum
Merge Two Sorted Arrays Without Extra Space
Ninja And The Strictly Increasing Array
Maximum GCD
Negative To The End