Skip to content

Instantly share code, notes, and snippets.

@luchuan
Last active February 22, 2016 09:14
Show Gist options
  • Save luchuan/00c297ff937aba9415ed to your computer and use it in GitHub Desktop.
Save luchuan/00c297ff937aba9415ed to your computer and use it in GitHub Desktop.
def golden_hash(value):
num = hash(value)
prime = 2654435761
return (num * prime) % (2 ** 32)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment