-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path#49.py
44 lines (36 loc) · 1.13 KB
/
#49.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
from itertools import count, islice
from math import sqrt
def isPrime(n):
if n < 2 or n % 2 == 0:
return False
for i in islice(count(3, 2), int(sqrt(n)-1)//2):
if n % i == 0:
return False
return True
def getPrimes():
"""
Returns : list
A list of all 4-digit prime numbers.
"""
list_primes = []
for num in range(1000, 10000):
if isPrime(num):
list_primes.append(num)
return list_primes
def Prime_permutations():
"""
Returns : str
A string of 3 numbers which are prime as well as permutations of
each other.
"""
all_primes = getPrimes()
first, second, third = 0, 0, 0
for index in range(len(all_primes)):
first = all_primes[index]
if first != 1487:
second, third = first + 3330, first + 6660
if sorted(set(str(first))) == sorted(set(str(second))) and \
sorted(set(str(second))) == sorted(set(str(third))):
if second in all_primes and third in all_primes:
return str(first) + str(second) + str(third)
print(Prime_permutations())