• + 0 comments

    I have the folloiwng for python2, but was not able to find a solution for python3. I even tryied to define hash() again. Anyways, here is my solution if you have one for python3 please share! :)

    if __name__ == '__main__':
        n = int(raw_input())
        integer_list = tuple(map(int, raw_input().split()))
        print(hash(integer_list))