import java.util.*;
class HelloWorld {
public static void main(String[] args) {
HashMap<Integer,Integer> map=new HashMap<Integer,Integer>();
int n=sc.nextInt();
for(int i=0;i<n;i++){
int temp=sc.nextInt();
if(!map.containsKey(temp)){
map.put(temp,1);
}
}
int arr[]=new int[map.size()];
int j=0;
for (Map.Entry<Integer, Integer> e : map.entrySet())
arr[j++]=e.getKey();
for(int i=0;i<j;i++){
System.out.print(arr[i]);
}
}
}
No comments:
Post a Comment