컴공생의 다이어리
[프로그래머스] 소수 만들기 - 파이썬(Python) 본문
[프로그래머스] 소수 만들기 - 파이썬(Python)
from itertools import combinations
def solution(nums):
answer = 0
for i in combinations(nums, 3):
s = sum(i)
chk = True
for j in range(2, int(s ** 0.5) + 1):
if s % j == 0:
chk = False
break
if chk is True:
answer += 1
return answer
https://programmers.co.kr/learn/courses/30/lessons/12977
728x90
'Development > Algorithm & Coding Test' 카테고리의 다른 글
[파이썬, Python] 백준 12761번 : 돌다리 (0) | 2022.07.01 |
---|---|
[프로그래머스] 스킬트리 - 파이썬(Python) (0) | 2022.06.30 |
[프로그래머스] 괄호 변환 - 파이썬(Python) (0) | 2022.06.28 |
[프로그래머스] 문자열 압축 - 파이썬(Python) (0) | 2022.06.27 |
[프로그래머스] 입국심사 - 파이썬(Python) (0) | 2022.06.26 |
Comments