티스토리 뷰
월간 코드 챌린지 시즌1
programmers.co.kr/learn/courses/30/lessons/68644
from itertools import combinations
def solution(numbers):
answer = []
com = list(combinations(numbers, 2))
for num in com:
answer.append(sum(num))
answer = list(set(answer))
answer = sorted(answer)
return answer
'Algorithm > Programmers' 카테고리의 다른 글
[프로그래머스] 오랜 기간 보호한 동물(1) - MySQL (0) | 2021.02.12 |
---|---|
[프로그래머스] 여행경로 - Python (0) | 2021.01.04 |
[프로그래머스] 같은 숫자는 싫어 - Python (0) | 2020.07.14 |
[프로그래머스] 위장 - Python (0) | 2020.07.12 |
[프로그래머스] 네트워크 - Python (0) | 2020.07.11 |