forked from bellshade/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sieve_of_eratosthenes.py
54 lines (41 loc) · 1.21 KB
/
sieve_of_eratosthenes.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Saringan Eratosthenes adalah algoritma yang digunakan
# untuk mencari bilangan prima, kurang dari atau
# sama dengan nilai yang diberikan.
# informasi lebih lanjut
# https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes
from __future__ import annotations
import math
def prime_sieve(angka: int) -> list[int]:
"""
mengembalikan daftar dengan semua bilangan prima
hingga ke n
>>> prime_sieve(25)
[2, 3, 5, 7, 11, 13, 17, 19, 23]
>>> prime_sieve(10)
[2, 3, 5, 7]
>>> prime_sieve(2)
[2]
>>> prime_sieve(1)
[]
"""
if angka <= 0:
raise ValueError("angka harus positif atau tidak boleh 0")
sieve = [True] * (angka + 1)
prime = []
start = 2
end = int(math.sqrt(angka))
while start <= end:
if sieve[start] is True:
prime.append(start)
# atur kelipatan awal menjadi false
for i in range(start * start, angka + 1, start):
if sieve[i] is True:
sieve[i] = False
start += 1
for j in range(end + 1, angka + 1):
if sieve[j] is True:
prime.append(j)
return prime
if __name__ == "__main__":
import doctest
doctest.testmod(verbose=True)