### hashing

import random
def hash1(s):
    return random.randint(1, 1000)

def hash2(s):
    total = 0
    for c in s:
        total += ord(c) #ord gets the ascii value for a char
    return total

def hash3(s):
    return len(s)
