문제
programmers.co.kr/learn/courses/30/lessons/12977
처음 작성한 코드
def solution(nums):
from itertools import combinations
answer = 0
hubo = combinations(nums,3)
for i in [sum(i) for i in hubo]:
for j in range(2,i):
if i%j == 0:break
else: answer+=1
return answer
'Programmers' 카테고리의 다른 글
[프로그래머스] 짝지어 제거하기 (0) | 2021.01.30 |
---|---|
[프로그래머스] 폰켓몬 (0) | 2021.01.30 |
[프로그래머스] 영어 끝말잇기 (0) | 2021.01.28 |
[프로그래머스] 순위 검색 (0) | 2021.01.27 |
[프로그래머스] 신규 아이디 추천 (0) | 2021.01.27 |