Skip to content

Commit 4c36386

Browse files
committed
[level 2] Title: 소수 찾기, Time: 6.12 ms, Memory: 82 MB -BaekjoonHub
1 parent a0e61a5 commit 4c36386

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

프로그래머스/2/42839. 소수 찾기/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### 성능 요약
66

7-
메모리: 79.3 MB, 시간: 9.08 ms
7+
메모리: 82 MB, 시간: 6.12 ms
88

99
### 구분
1010

@@ -16,7 +16,7 @@
1616

1717
### 제출 일자
1818

19-
2024년 08월 27일 00:14:37
19+
2024년 08월 29일 19:10:58
2020

2121
### 문제 설명
2222

프로그래머스/2/42839. 소수 찾기/소수 찾기.java

+6-3
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,24 @@ public int solution(String numbers) {
1414
return ans;
1515
}
1616

17+
// 숫자 조합
1718
void permutation(String numbers, int cur, boolean[] visited, int digit) {
1819
if (digit == numbers.length()) return;
1920

2021
for (int i=0; i<numbers.length(); i++) {
21-
if (visited[i]) continue; // 이미 방문했으면 패스!!
22+
if (visited[i]) continue; // 이미 방문
2223

24+
// 새로운 숫자 조합
2325
int newValue = cur + (int)((numbers.charAt(i) - '0') * Math.pow(10, digit));
24-
candidates.add(newValue);
26+
candidates.add(newValue); // 소수 후보에 추가
2527

2628
visited[i] = true;
2729
permutation(numbers, newValue, visited, digit + 1);
28-
visited[i] = false;
30+
visited[i] = false; // 백트레킹
2931
}
3032
}
3133

34+
// 소수 찾기
3235
boolean isPrime(int n) {
3336
if (n < 2) return false;
3437

0 commit comments

Comments
 (0)