https://www.hackerrank.com/challenges/py-introduction-to-sets/problem Introduction to Sets | HackerRank Use the set tool to compute the average. www.hackerrank.com 이 문제를 기반으로 집합은 중복 원소를 허용하지 않는다. 리스트는 중복을 허용한다. 그래서 리스트 입력을 받아서 계산할 때는 집합으로 해야할 때가 있다. 그 때는 저렇게 하는 것이다. 그리고 ** arr = list(map(int, input().split())) 문장이 중요하다 문자열로 입력을 받지만 int형으로 바꿔서 리스트로 받는 형태이다. map()에 대해서 더 공부하는 것이 좋겠다.