题解 | #数组中重复的数字#
数组中重复的数字
http://www.nowcoder.com/practice/6fe361ede7e54db1b84adc81d09d8524
检查数量即可,利用set更方便 /**
- 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
- @param numbers int整型一维数组
- @return int整型 */
function duplicate( numbers ) {
let map=new Map()
for(let i of numbers){
let count=0
if(map.has(i)){
count=map.get(i)
}
map.set(i,count+1)
if(count+1>1) {
return i
}
}
return -1
}
module.exports = {
duplicate : duplicate
};