https://programmers.co.kr/learn/courses/30/lessons/12977
from itertools import combinations
import math
def is_prime_number(x):
for i in range(2, int(math.sqrt(x)) + 1):
if x % i == 0:
return False
return True
def solution(nums):
prime_candidate = list(combinations(nums, 3))
answer = 0
for i in prime_candidate:
if is_prime_number(sum(i)):
answer +=1
return answer
'Programming > Programmers' 카테고리의 다른 글
[프로그래머스] 위클리 챌린지 8주차 - 최소직사각형 (Python) (0) | 2021.09.28 |
---|---|
[프로그래머스] 폰캣몬 (Python) (0) | 2021.09.28 |
[프로그래머스] 음양 더하기(Python) (0) | 2021.09.27 |
[프로그래머스] 숫자 문자열과 영단어(Python) (0) | 2021.09.27 |
[프로그래머스] 등굣길(Python) (0) | 2021.08.12 |
댓글