Skip to content

Instantly share code, notes, and snippets.

@jovey-zheng
Created March 28, 2017 01:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jovey-zheng/b1edc5cb4301bf49ed0811a48fb3dd87 to your computer and use it in GitHub Desktop.
Save jovey-zheng/b1edc5cb4301bf49ed0811a48fb3dd87 to your computer and use it in GitHub Desktop.
function isRepeat(arr){
var hash = {};
for (var item of arr) {
if (hash[item]) {
return true;
}
hash[item] = false;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment