콤비네이션1 삼총사 - Python, combinations https://school.programmers.co.kr/learn/courses/30/lessons/131705 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 풀이 - 나의 생각콤비네이션 말고 이중 포인터로 해보려고 했는데 뭐가 문제인지 답이 안나옴. 테케는 통과하는데 코드 from itertools import combinationsdef solution(number): answer = 0 for combi in combinations(number, 3): if sum(combi) == 0: answer += 1 return answer 2024. 11. 30. 이전 1 다음