https://school.programmers.co.kr/learn/courses/30/lessons/131705
from itertools import combinations as cb
def solution(number):
answer = 0
for c in cb(number, 3):
if sum(c) == 0:
answer += 1
return answer
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스] / [Level 2] / [Python] 주차 요금 계산 (0) | 2023.03.20 |
---|---|
[프로그래머스] / [Level 2] / [Python] 리코쳇 로봇 (0) | 2023.03.19 |
[프로그래머스] / [Level 1] / [Python] 크기가 작은 부분 문자열 (0) | 2023.03.10 |
[프로그래머스] / [Level 2] / [Python] [1차] 캐시 (0) | 2023.03.10 |
[프로그래머스] / [Level 2] / [Python] 덧칠하기 (0) | 2023.03.07 |