## 의사코드 ##
# combinations로 서로 다른 인덱스에 있는 두 개의 수 뽑기
# combinations로 뽑은 두 수 더하기
# 더해서 만들 수 있는 수가 중복될 경우 하나만 배열에 담아 return (-> set()으로 중복 제거)
# 배열을 오름차순으로 정렬
통과한 코드
from itertools import combinations
def solution(numbers):
answer = []
# numbers의 조합 구하기
combi = list(combinations(numbers, 2))
# 조합의 두 수 더하기
for c in combi:
x, y = c[0], c[1]
n = x + y
answer.append(n)
# 중복 제거, 오름차순 정렬
answer = list(set(answer))
answer.sort()
return answer
-> combinations()로 두 개의 수를 뽑아서 더하고, set()으로 중복 제거 후 오름차순 정렬