728x90
https://programmers.co.kr/learn/courses/30/lessons/68644
출처 : 프로그래머스
from itertools import combinations
def solution(numbers):
answer = []
tmp = list(combinations(numbers,2))
for t in tmp:
answer.append(sum(t))
answer = list(set(answer))
answer.sort()
return answer
'알고리즘 문제 풀이 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 최소직사각형 python (0) | 2022.04.01 |
---|---|
[프로그래머스] 2016년 python (0) | 2022.04.01 |
[프로그래머스] 3진법 뒤집기 python (0) | 2022.03.31 |
[프로그래머스] 약수의 개수와 덧셈 (0) | 2022.03.31 |
[프로그래머스] 두 정수 사이의 합 python (0) | 2022.03.26 |