Notice
Recent Posts
Recent Comments
Link
개발 무지렁이
[코테 알고리즘] 소수(Prime Number)와 에라토스테네스의 체 본문
소수(Prime Number)
소수(Prime Number) 판별 알고리즘 에라토스테네스의 체
import java.util.*;
class Main {
public static void main(String[] args) {
System.out.println(isPrime(97));
}
public static boolean isPrime(int num) {
int end = (int)Math.sqrt(num);
for(int i = 2; i <= end; i++) {
if(num % i == 0) return false;
}
return true;
}
}
'코딩 테스트' 카테고리의 다른 글
[코테 알고리즘] 시간복잡도와 빅오표기법 (1) | 2023.03.12 |
---|---|
[코테 알고리즘] 완전탐색(Brute Force) 알고리즘과 순열/조합 (0) | 2022.12.20 |
[코테 알고리즘] 시간복잡도 (0) | 2022.12.20 |
[코테 알고리즘] toCharArray() (0) | 2022.12.17 |
[코테 알고리즘] 슬라이딩 윈도우(Sliding Window) (0) | 2022.12.16 |
Comments