Find the Unique Element
Find the Unique Element
Send Feedback
Find the Unique Element
Unique element is always present in the array/list according to the given condition.
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.
For each test case, print the unique element present in the array.
Output for every test case will be printed in a separate line.
1 <= t <= 10^2
0 <= N <= 10^6
Time Limit: 1 sec
1
7
2 3 1 6 3 6 2
1
2
5
2 4 7 2 7
9
1 3 1 3 6 6 7 10 7
4
10
int findUnique(int *arr, int n) { // Write your code here int x=0; for(int i=0;i<n;i++){ x^=arr[i]; } return x; }
#include <iostream>using namespace std;
#include "solution.h"
int main() { int t; cin >> t;
while (t--) { int size; cin >> size; int *input = new int[size];
for (int i = 0; i < size; ++i) { cin >> input[i]; }
cout << findUnique(input, size) << endl; }
return 0;}
Comments
Post a Comment