forked from Nikky01/GeekForGeeks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Find_odd_Occurence.java
53 lines (48 loc) · 1007 Bytes
/
Find_odd_Occurence.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.geek;
import java.util.HashMap;
import java.util.Scanner;
public class Find_odd_Occurence {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int t=sc.nextInt();
for(int i=0;i<t;i++)
{
int n=sc.nextInt();
// int a[]=new int[n];
int res=0;
for(int j=0;j<n;j++)
{
int temp=sc.nextInt();
// a[j]=sc.nextInt();
res=res^temp;
}
System.out.println(res);
}
}
// private static int getOccurence(int n, int[] a) {
// TODO Auto-generated method stub
// HashMap<Integer,Integer> hh=new HashMap<Integer,Integer>();
// for(int i=0;i<n;i++)
// {
// if(hh.containsKey(a[i]))
// {
// int val=hh.get(a[i]);
// hh.put(a[i], val+1);
// }
// else
// hh.put(a[i],1);
// }
// for(Integer k:hh.keySet())
// {
// if(hh.get(k)%2!=0)
// return k;
// }
// return -1;
// int res=0;
// for(int i=0;i<n;i++)
// {
// res=res^a[i];
// }
// return res;
// }
}