function(arr){
let hash={}
for (const key in arr){
if(hash[arr[key]]){
return true
}
hash[arr[key]]=true
return false