출처: https://meyouus.tistory.com/64 [정보 공유 - For Me For You For Us]
본문으로 바로가기

 

간단한 Tuple 문제이다. 풀이는 따로 하지 않겠다:

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