分析:(easy)
“存在”,只要有一个即是,设置直接集合去重即可,遍历数组,一个个add进入set,根据返回值可以判断是否已经存在
代码:
public boolean containsDuplicate(int[] nums) {
Set<Integer> set = new HashSet<>();
for(int num:nums){
if(set.add(num)){
//do nothing
}else{
return true;
}
}
return false;
}