문제 설명 및 제한사항
아이디어 및 해결 방법
코드
import itertools
def is_prime(x):
for i in range(2, int(x**0.5) + 1):
if x % i == 0:
return False
return True
def solution(nums):
answer = 0
for x, y, z in itertools.combinations(nums, 3):
if is_prime(x + y + z):
answer += 1
return answer
Python
복사
출처
프로그래머스 코딩테스트 연습 https://school.programmers.co.kr/learn/challenges