Check Duplicate

Given an array 'arr' of 'N' integers and an integer 'K'. The array 'arr' may contain duplicate integers. Return "true" if the array contains any duplicate element within the 'K' distance from each other, otherwise, return "false".

Input format :
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.  
Output format :
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.
Note
You do not need to print anything, it has already been taken care of. Just implement the given function.
Constraints :
1 <= T <= 10
1 <= N <= 10^5
1 <= K <= 10^5
-10^9 <= arr[i] <= 10^9

Time Limit: 1sec
CodingNinjas
author
2y
Brute Force

The naive approach is to run two loops, the outer loop will pick each element one by one.

The inner loop compares all elements which are within ‘K’ distance from and with the currently selec...read more

CodingNinjas
author
2y
Using Map

We need to check if the duplicate exists at a distance of ‘K’.

  • We can do that by storing the element and its index in a map ‘MP’.
  • Now iterate over the array, if ‘ARR[i]’ doesn't exist in the m...read more
CodingNinjas
author
2y
Sliding Window Technique

We can use the sliding window technique. The idea is to process every window of size ‘K’ one at a time and store it into Set, now if the element is repeated in a window of size...read more

Add answer anonymously...
Wipro Software Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter