2019-07-16 23:09:53 +00:00
|
|
|
"""
|
2020-10-25 03:23:16 +00:00
|
|
|
Project Euler Problem 7: https://projecteuler.net/problem=7
|
2020-10-08 05:57:47 +00:00
|
|
|
|
2020-10-25 03:23:16 +00:00
|
|
|
10001st prime
|
2019-07-16 23:09:53 +00:00
|
|
|
|
2020-10-25 03:23:16 +00:00
|
|
|
By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we
|
|
|
|
can see that the 6th prime is 13.
|
2019-07-16 23:09:53 +00:00
|
|
|
|
2020-10-25 03:23:16 +00:00
|
|
|
What is the 10001st prime number?
|
|
|
|
|
|
|
|
References:
|
|
|
|
- https://en.wikipedia.org/wiki/Prime_number
|
2019-07-16 23:09:53 +00:00
|
|
|
"""
|
2019-02-09 17:49:57 +00:00
|
|
|
import itertools
|
2020-07-06 07:44:19 +00:00
|
|
|
import math
|
2019-07-16 23:09:53 +00:00
|
|
|
|
|
|
|
|
2022-04-08 17:40:45 +00:00
|
|
|
def is_prime(number: int) -> bool:
|
2020-10-25 03:23:16 +00:00
|
|
|
"""
|
|
|
|
Determines whether a given number is prime or not
|
|
|
|
|
2022-04-08 17:40:45 +00:00
|
|
|
>>> is_prime(2)
|
2020-10-25 03:23:16 +00:00
|
|
|
True
|
2022-04-08 17:40:45 +00:00
|
|
|
>>> is_prime(15)
|
2020-10-25 03:23:16 +00:00
|
|
|
False
|
2022-04-08 17:40:45 +00:00
|
|
|
>>> is_prime(29)
|
2020-10-25 03:23:16 +00:00
|
|
|
True
|
|
|
|
"""
|
|
|
|
|
2019-02-09 17:49:57 +00:00
|
|
|
if number % 2 == 0 and number > 2:
|
|
|
|
return False
|
|
|
|
return all(number % i for i in range(3, int(math.sqrt(number)) + 1, 2))
|
|
|
|
|
2019-07-16 23:09:53 +00:00
|
|
|
|
2019-02-09 17:49:57 +00:00
|
|
|
def prime_generator():
|
2020-10-25 03:23:16 +00:00
|
|
|
"""
|
|
|
|
Generate a sequence of prime numbers
|
|
|
|
"""
|
|
|
|
|
2019-02-09 17:49:57 +00:00
|
|
|
num = 2
|
|
|
|
while True:
|
2022-04-08 17:40:45 +00:00
|
|
|
if is_prime(num):
|
2019-02-09 17:49:57 +00:00
|
|
|
yield num
|
2019-07-16 23:09:53 +00:00
|
|
|
num += 1
|
|
|
|
|
2019-02-09 17:49:57 +00:00
|
|
|
|
2020-10-08 05:57:47 +00:00
|
|
|
def solution(nth: int = 10001) -> int:
|
2020-10-25 03:23:16 +00:00
|
|
|
"""
|
|
|
|
Returns the n-th prime number.
|
2019-08-19 13:37:49 +00:00
|
|
|
|
2019-07-16 23:09:53 +00:00
|
|
|
>>> solution(6)
|
|
|
|
13
|
|
|
|
>>> solution(1)
|
|
|
|
2
|
|
|
|
>>> solution(3)
|
|
|
|
5
|
|
|
|
>>> solution(20)
|
|
|
|
71
|
|
|
|
>>> solution(50)
|
|
|
|
229
|
|
|
|
>>> solution(100)
|
|
|
|
541
|
|
|
|
"""
|
2020-10-08 05:57:47 +00:00
|
|
|
return next(itertools.islice(prime_generator(), nth - 1, nth))
|
2019-02-09 17:49:57 +00:00
|
|
|
|
|
|
|
|
2019-07-16 23:09:53 +00:00
|
|
|
if __name__ == "__main__":
|
2020-10-25 03:23:16 +00:00
|
|
|
print(f"{solution() = }")
|