Skip to content

Instantly share code, notes, and snippets.

@selfish
Created November 3, 2014 15:27
Show Gist options
  • Save selfish/07e85dfe162f2407df32 to your computer and use it in GitHub Desktop.
Save selfish/07e85dfe162f2407df32 to your computer and use it in GitHub Desktop.
//PSEUDOCODE!!
function fisher_yates_shuffle(items):
for(i in _.range(items.length)){
var randomIndex = random.randint(i, len(items)-1)
temp = items[randomIndex]
items[randomIndex] = items[i]
items[i] = temp
}
return items
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment