class Solution {
public int findNumberAppearingOnce(int[] nums) {
Map[HTML_REMOVED]map=new HashMap;//根据Map集合的特点进行解答
for(int i:nums){//遍历数组将数组的元素存在Map集合的k值
if(map.containsKey(i)){//判断数组元素是否已经存在Map集合中
Integer value=map.get(i);
value++;
map.put(i,value);
}else
map.put(i,1);
}
int d=0;
Set[HTML_REMOVED]set=map.keySet();
for(int i:set){
if(map.get(i)==1)
d=i;
}
return d;
}
}