-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path51.py
47 lines (34 loc) · 1.32 KB
/
51.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
from typing import Any, Iterable, Iterator
import more_itertools
import sympy
def replacement_indices(number: int) -> Iterator[Any]:
yield from more_itertools.powerset(range(len(str(number))))
def all_nine_or_ten_replacements(number: int, target_indices: Iterable[int]) -> Iterable[int]:
rv = []
exploded = list(str(number))
for digit in range(10):
c = exploded.copy()
for i in target_indices:
c[i] = str(digit)
if c[0] != "0":
rv.append(int("".join(c)))
return rv
def test_replacement() -> None:
p = 56003
indices = (2, 3)
candidates = list(all_nine_or_ten_replacements(p, indices))
assert len(candidates) == 10
primes = set(n for n in candidates if sympy.isprime(n)) # type: ignore
assert primes == {56003, 56113, 56333, 56443, 56663, 56773, 56993}
if __name__ == "__main__":
p = 2
found_one = False
while not found_one:
for indices in replacement_indices(p):
candidates = all_nine_or_ten_replacements(p, indices)
primes_only = [n for n in candidates if sympy.isprime(n)] # type: ignore
if len(primes_only) == 8 and p in primes_only:
print(f"{p=}: {primes_only}")
found_one = True
break
p = sympy.nextprime(p) # type: ignore