일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 백준
- 장고
- AI Tech
- AI Tech 4기
- 서블릿
- QNA 봇
- 웹
- Django
- 풀스택
- 프로그래머스
- 서버
- Naver boostcourse
- 구현
- 2021 Dev-matching 웹 백엔드 개발자
- BOJ
- 프로그래밍
- 백엔드
- 네이버
- 레벨2
- 파이썬
- 대회
- boostcourse
- 부스트캠프
- sts
- 4기
- Naver boostcamp
- Customer service 구현
- cs50
- 웹 프로그래밍
- P Stage
Archives
- Today
- Total
daniel7481의 개발일지
[프로그래머스]소수 찾기 본문
반응형
https://school.programmers.co.kr/learn/courses/30/lessons/42839
풀이
Permutations 함수를 사용하여 가능한 모든 숫자의 경우의 수를 가져온 다음, 딕셔너리 자료구조를 이용하여 해싱을 통해 이미 나온 적 있는 숫자인지 아닌지를 확인해서, 만약 나온 적이 없는 함수이면 직접 구현한 소수인지 판단하는 함수인 prime함수를 통해 만약 참이면 answer에 하나씩 더해주게 하였다.
from itertools import permutations
def prime(x):
if x== 1 or x == 0:
return False
for i in range(2, x):
if x % i == 0:
return False
return True
def solution(numbers):
answer = 0
dic = {}
numbers = list(numbers)
com = []
for i in range(1, len(numbers)+1):
com += list(permutations(numbers, i))
for co in com:
num = int("".join(co))
try:
dic[num]
except:
dic[num] = True
#print(num)
if prime(num):
answer += 1
return answer
반응형
'프로그래머스' 카테고리의 다른 글
[프로그래머스]후보키 (0) | 2022.08.02 |
---|---|
[프로그래머스]섬 연결하기 (0) | 2022.07.31 |
[프로그래머스]게임 맵 최단거리 (0) | 2022.07.30 |
[프로그래머스]네트워크 (0) | 2022.07.29 |
[프로그래머스]디스크 컨트롤러 (0) | 2022.07.28 |