Skip to content

Instantly share code, notes, and snippets.

@topher200
Created May 5, 2011 06:17
Show Gist options
  • Save topher200/956625 to your computer and use it in GitHub Desktop.
Save topher200/956625 to your computer and use it in GitHub Desktop.
@staticmethod
def _hash_function(string):
# Covert each char of string to an ordinal number and sum them. Mod this
# by the number of buckets.
return sum(map(ord, string)) % num_buckets
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment