You have been given an integer array/list(ARR) of size N which contains numbers from 0 to (N - 2). Each number is present at least once. That is, if N = 5, the array/list constitutes values ranging from 0 to 3 and among these, there is a single integer value that is present twice. You need to find and return that duplicate number present in the array.
Note :
Duplicate number is always present in the given array/list.
Input format :
The first line contains an Integer 't' which denotes the number of test cases or queries to be run. Then the test cases follow.
First line of each test case or query contains an integer 'N' representing the size of the array/list.
Second line contains 'N' single space separated integers representing the elements in the array/list.
Output Format :
For each test case, print the duplicate element in the array/list.
Output for every test case will be printed in a separate line.
Constraints :
1 <= t <= 10^2
0 <= N <= 10^3
Time Limit: 1 sec
Given an array of size N containing numbers from 0 to (N-2), find and return the duplicate number.
Iterate through the array and keep track of the frequency of each number using a hashmap.
Return the nu...read more
O(1)
Time Complexity: O(n)Explanation:O(N)
Duplicate values are not allowed
List not allowed duplicate values
List not allowed duplicate values
if
int array size 'N';
else,number 0 to (N-2);
goto (if) (else)
do
number presentt once,
print,N=5,;
while,array ranging 0 to3,
and
if single integers present twice,;
goto,if else;
(break) the numb...read more
Set unique = new HashSet();
List duplicateList = Arrays.of(inputArray);
duplicateList.stream().filter(s-> !unique.add(s)).forEach(System.out.println);
Sure, I can help you with that. Here is the algorithm to find the duplicate number in an array:
Iterate through the array and create a set of all the elements in the array.
Iterate through the set and c...read more
Top TCS Software Engineer interview questions & answers
Popular interview questions of Software Engineer
Top HR questions asked in TCS Software Engineer
Reviews
Interviews
Salaries
Users/Month