from itertools import combinations
def solution(nums):
answer = 0
for a in combinations(nums, 3):
numbers = sum(a)
for i in range(2, numbers):
if numbers % i == 0:
break
else:
answer += 1
return answer
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
프로그래머스 조건에 맞는 회원수 구하기 (0) | 2022.10.25 |
---|---|
프로그래머스 상위 n개 레코드 (0) | 2022.10.25 |
프로그래머스 방문 길이 python 파이썬 (0) | 2022.10.08 |
프로그래머스 스킬트리 python 파이썬 (0) | 2022.10.08 |
프로그래머스 숫자 문자열과 영단어 python 파이썬 (0) | 2022.10.08 |