Recent Posts
밍쯔와 안작고 안귀여운 에러들🖤
[Python] 프로그래머스 - level1 소수 만들기 본문
[문제]
https://programmers.co.kr/learn/courses/30/lessons/12977
[코드]
def solution(nums):
from itertools import combinations as cb
answer = 0
for a in cb(nums, 3):
cand = sum(a)
for j in range(2, cand//2):
if cand%j==0:
break
else:
answer += 1
return answer
'Algorithm' 카테고리의 다른 글
[Python] 프로그래머스 - level1 모의고사 (0) | 2022.03.17 |
---|---|
[Python] 프로그래머스 - level1 완주하지 못한 선수 (0) | 2022.03.16 |
[Python] 프로그래머스 - level1 내적 (0) | 2022.03.14 |
[Python] 프로그래머스 - level1 음양 더하기 (0) | 2022.03.13 |
[Python] 프로그래머스 - level1 신고 결과 받기 (0) | 2022.03.12 |