에라토스테네스의 체 소수찾기 알고리즘 import math def solution(N): arr = [True] * (N + 1) for i in range(2, int(math.sqrt(N)) + 1): if arr[i]: j = 2 while i * j 프로그래밍/Algorithm 2022.01.18