class Solution {
public int singleNumber(int[] nums) {
HashMap<Integer, Integer> map = new HashMap<>();
for(int num : nums){
map.put(num, map.getOrDefault(num, 0) + 1);
}
int res = 0;
for(int i : map.keySet()){
if(map.get(i) == 1){
res = i;
}
}
return res;
}
}
剑指-004
最新推荐文章于 2024-11-08 14:58:24 发布