-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolution.py
More file actions
32 lines (27 loc) · 780 Bytes
/
Copy pathsolution.py
File metadata and controls
32 lines (27 loc) · 780 Bytes
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
import json
import time
def is_prime(n):
if n < 2:
return False
for i in range(2, int(n**0.5)+1):
if n % i == 0:
return False
return True
def is_truncatable(n: str):
for i in range(len(n)):
if not all([is_prime(int(n[i:])), is_prime(int(n[:i+1]))]):
return False
return True
def solution() -> int:
count, i, _sum = 0, 11, 0
while count != 11:
if is_truncatable(str(i)):
_sum += i
count += 1
i+=1
return _sum
cpu_s, wall_s = time.process_time(), time.time()
result = solution()
cpu_e, wall_e = time.process_time(), time.time()
cpu_time, wall_time = cpu_e - cpu_s, wall_e - wall_s
print(json.dumps({"solution": result, "cpu": cpu_time, "wall": wall_time}))