You are given an array of integers 'ARR' containing N elements. Each integer is in the range [1, N-1], with exactly one element repeated in the array.
Your task is to find the duplicate element.
Note :
All the integers in the array appear only once except for precisely one integer which appears two or more times.
Input format:
The first line of input contains an integer ‘T’ denoting the number of test cases. Then the T test cases follow.
The first line of each test case contains an integer ‘N’, the number of elements in the array.
The second line of each test case contains ‘N’ space-separated integers representing the elements of the array.
Output format:
For each test case, the duplicate element of the given array is printed.
The output of each test case is printed in a separate line.
Note :
You are not supposed to print anything; It has already been taken care of. Just implement the given function.
Constraints :
1 <= T <= 5
1 <= N <= 10^5
1 <= ARR[i] <= N - 1
Time Limit: 1 sec
The task is to find the duplicate element in an array of integers.
Iterate through the array and keep track of the frequency of each element using a hash map.
Return the element with a frequency greater...read more
The basic idea is to use a HashMap to solve the problem. But there is a catch, the numbers in the array are from 0 to n-1, and the input array has length n. So, the input array can be used as a HashMa...read more
First, we sort the array. Now, the rest of the algorithm becomes fairly simple. We just compare each element to its previous element. As we know there is exactly one repeated element, hence ...read more
We perform binary search on the array [1,N], then COUNT the number of elements that are less than or equal to MID of [1,N]. If the duplicate is on the left side of the middle element, the...read more
We need to insert elements into a data structure and look them up in constant time, so as to improve the complexity of sorting approach. A set can be used to satisfy these conditions. So, we ...read more
For this approach we use the array indices to store the visited state of each number. We know that only the duplicate element would be visited more than once. For each number w...read more
For this approach, we divide the whole process into two phases and use two pointers named tortoise and hare..
Phase 1(Find the intersection point): The hare would be ...read more
Top Unthinkable Solutions Software Developer interview questions & answers
Popular interview questions of Software Developer
Top HR questions asked in Unthinkable Solutions Software Developer
Reviews
Interviews
Salaries
Users/Month