일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 43. Multiply Strings
- Python Implementation
- attribute
- Python Code
- Convert Sorted List to Binary Search Tree
- 컴퓨터의 구조
- kaggle
- Python
- Class
- 109. Convert Sorted List to Binary Search Tree
- Substring with Concatenation of All Words
- t1
- 프로그래머스
- iterator
- concurrency
- 밴픽
- shiba
- Decorator
- Generator
- Protocol
- 315. Count of Smaller Numbers After Self
- DWG
- 운영체제
- Regular Expression
- LeetCode
- 30. Substring with Concatenation of All Words
- 파이썬
- data science
- 715. Range Module
- 시바견
Archives
- Today
- Total
Scribbling
프로그래머스: 소수 찾기 본문
def solution(numbers):
def is_prime(number):
if number == 1:
return False
i = 2
while i * i <= number:
if number % i == 0:
return False
i += 1
return True
def dfs(numbers, temp):
nonlocal answer
if temp:
num = int(temp)
if is_prime(num):
answer += 1
if not numbers:
return
if not temp:
checked = None
for i, num in enumerate(numbers):
if num != 0 and num != checked:
dfs(numbers[:i]+numbers[i+1:], temp+str(num))
checked = num
else:
checked = None
for i, num in enumerate(numbers):
if num != checked:
dfs(numbers[:i]+numbers[i+1:], temp+str(num))
checked = num
numbers = list(map(int, list(numbers)))
numbers.sort()
answer = 0
dfs(numbers, '')
return answer
'Computer Science > Coding Test' 카테고리의 다른 글
프로그래머스: 모의고사 (0) | 2021.10.20 |
---|---|
프로그래머스: 카펫 (0) | 2021.10.19 |
프로그래머스: H-Index (0) | 2021.10.18 |
프로그래머스: 이중 우선 순위 큐 (0) | 2021.10.16 |
프로그래머스: 디스크 컨트롤러 (0) | 2021.10.16 |