반응형
Recent Posts
Notice
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- python 14503
- 항해99
- boj 2309
- 백준 막대기
- 백준 2309
- 백준 카드1
- 99항해
- 프로그래머스
- 파이썬
- python 2309
- 큐
- softeer
- leetcode
- 개발자 취업
- BOJ
- 백준 팰린드롬수
- leetcode 2405
- 코딩테스트 준비
- 백준
- BFS
- 스택
- python 1259
- python 10989
- 구현
- Python 20001
- Python
- 일곱 난쟁이
- 99클럽
- python 10250
- til
Archives
- Today
- Total
동까의 코딩
[99클럽] 10일차 TIL 본문
반응형
프로그래머스에서 완전탐색 문제 소수찾기를 풀었습니다.
https://school.programmers.co.kr/learn/courses/30/lessons/42839
from itertools import permutations
def is_prime_number(x) :
if x < 2 :
return False
for i in range(2, x) :
if x % i == 0 :
return False
return True
def solution(numbers):
answer = 0
nums = []
for i in range(1, len(numbers)+1) :
nums.append(list(set(map(''.join, permutations(numbers, i)))))
per = list(set(map(int, set(sum(nums, [])))))
for p in per :
if is_prime_number(p) == True :
answer += 1
return answer
구현력이 아직 떨어져서 구글링을 하면서 문제를 풀어보았고, 몇 시간 후 한번 더 풀어보았습니다.
반응형
'문제 풀이 > 99클럽' 카테고리의 다른 글
[99클럽] 11일차 TIL (0) | 2024.05.31 |
---|---|
[99클럽] 10일차 TIL (0) | 2024.05.30 |
[99클럽] 9일차 TIL (0) | 2024.05.28 |
[99클럽] 8일차 TIL (0) | 2024.05.27 |
[99클럽] 7일차 TIL (0) | 2024.05.26 |