mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-05-08 13:23:59 +00:00
Segmented sieve - doctests (#9945)
* Replacing the generator with numpy vector operations from lu_decomposition. * Revert "Replacing the generator with numpy vector operations from lu_decomposition." This reverts commit ad217c66165898d62b76cc89ba09c2d7049b6448. * Added doctests. * Update segmented_sieve.py Removed unnecessary check. * Update segmented_sieve.py Added checks for 0 and negative numbers. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update segmented_sieve.py * Update segmented_sieve.py Added float number check. * Update segmented_sieve.py * Update segmented_sieve.py simplified verification * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update segmented_sieve.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update segmented_sieve.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * ValueError: Number 22.2 must instead be a positive integer --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Christian Clauss <cclauss@me.com>
This commit is contained in:
parent
80a2087e0a
commit
2122474e41
@ -4,7 +4,36 @@ import math
|
|||||||
|
|
||||||
|
|
||||||
def sieve(n: int) -> list[int]:
|
def sieve(n: int) -> list[int]:
|
||||||
"""Segmented Sieve."""
|
"""
|
||||||
|
Segmented Sieve.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
>>> sieve(8)
|
||||||
|
[2, 3, 5, 7]
|
||||||
|
|
||||||
|
>>> sieve(27)
|
||||||
|
[2, 3, 5, 7, 11, 13, 17, 19, 23]
|
||||||
|
|
||||||
|
>>> sieve(0)
|
||||||
|
Traceback (most recent call last):
|
||||||
|
...
|
||||||
|
ValueError: Number 0 must instead be a positive integer
|
||||||
|
|
||||||
|
>>> sieve(-1)
|
||||||
|
Traceback (most recent call last):
|
||||||
|
...
|
||||||
|
ValueError: Number -1 must instead be a positive integer
|
||||||
|
|
||||||
|
>>> sieve(22.2)
|
||||||
|
Traceback (most recent call last):
|
||||||
|
...
|
||||||
|
ValueError: Number 22.2 must instead be a positive integer
|
||||||
|
"""
|
||||||
|
|
||||||
|
if n <= 0 or isinstance(n, float):
|
||||||
|
msg = f"Number {n} must instead be a positive integer"
|
||||||
|
raise ValueError(msg)
|
||||||
|
|
||||||
in_prime = []
|
in_prime = []
|
||||||
start = 2
|
start = 2
|
||||||
end = int(math.sqrt(n)) # Size of every segment
|
end = int(math.sqrt(n)) # Size of every segment
|
||||||
@ -42,4 +71,9 @@ def sieve(n: int) -> list[int]:
|
|||||||
return prime
|
return prime
|
||||||
|
|
||||||
|
|
||||||
print(sieve(10**6))
|
if __name__ == "__main__":
|
||||||
|
import doctest
|
||||||
|
|
||||||
|
doctest.testmod()
|
||||||
|
|
||||||
|
print(f"{sieve(10**6) = }")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user