오름차순으로 출력한다는 점만 주의하자.
import itertools
def solution(numbers):
answer = set()
combi = list(itertools.combinations(numbers, 2))
for a, b in combi:
answer.add(a+b)
return sorted(list(answer))
'Programming > Programmers' 카테고리의 다른 글
[프로그래머스/Python] 가운데 글자(구현) (0) | 2020.12.22 |
---|---|
[프로그래머스/Python] 3진법 뒤집기(진법변환) (0) | 2020.12.22 |
[프로그래머스/Python] 여행경로(DFS) (0) | 2020.12.22 |
[프로그래머스/Python] 나머지 한 점(해시/비트연산자) (0) | 2020.12.22 |
[프로그래머스/Python] 더 맵게(힙) (0) | 2020.12.21 |