« Find duplicate element in array
Problem
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^6
Time Limit: 1 sec
Sample Input 1:
1
9
0 7 2 5 4 7 1 3 6
Sample Output 1:
7
Sample Input 2:
2
5
0 2 1 3 1
7
0 3 1 5 4 3 2
Sample Output 2:
1
3
Solution
1#include <iostream>2#include <iomanip>3#include <algorithm>4#include <string>5#include <cstring>6#include <vector>7#include <cmath>8#include <map>9#include <climits>10// climits for INT_MIN11#include <unordered_map>12using namespace std;1314int findDuplicate(int *arr, int n)15{16 int sum = ((n - 2) * (n - 1)) / 2;17 int sum2 = 0;18 for (int i = 0; i < n; i++)19 {20 sum2 = sum2 + arr[i];21 }22 return (sum2 - sum);23}2425int main()26{27 int t;28 cin >> t;2930 while (t > 0)31 {32 int size;33 cin >> size;34 int *input = new int[size];3536 for (int i = 0; i < size; i++)37 {38 cin >> input[i];39 }4041 cout << findDuplicate(input, size) << endl;42 t--;43 }44 return 0;45}