Skip to content

Instantly share code, notes, and snippets.

@ryuone
Last active December 21, 2015 08:09
Show Gist options
  • Save ryuone/6276312 to your computer and use it in GitHub Desktop.
Save ryuone/6276312 to your computer and use it in GitHub Desktop.
Math.random duplicate check.
var store = {}
for(var i=0, imax=60000; i<imax; i++){
var mRandom = Math.random() + "";
if(!store[mRandom]){
store[mRandom] = true;
continue;
}else{
console.log("Duplicate : " + mRandom + " -> " + i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment