본문 바로가기
프로그래머스/Lv.1

삼총사 - Python, combinations

by 아찌방 2024. 11. 30.

 

 

https://school.programmers.co.kr/learn/courses/30/lessons/131705

 

프로그래머스

SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프

programmers.co.kr

 

 

풀이 - 나의 생각

콤비네이션 말고 이중 포인터로 해보려고 했는데

 

뭐가 문제인지 답이 안나옴.

 

테케는 통과하는데

 

코드

 

from itertools import combinations

def solution(number):
    answer = 0
    for combi in combinations(number, 3):
        if sum(combi) == 0:
            answer += 1
    return answer

 

 

 

 

 

 

 

다음에 또 봐요

 

728x90