Solution of The Day
if name == '__main__':
n = int(input())
integer_list = tuple(map(int, input().split()))
has_value = hash(integer_list)
print(has_value)
Python hash() function is a built-in function and returns the hash value of an object if it has one. The hash value is an integer that is used to quickly compare dictionary keys while looking at a dictionary.
Properties of hash() function
LIke, Share, Follow and Comment for any suggestion. I am open for any suggestion