From 07377d824d3d95d35fdb3d255dd2e9515bbd4352 Mon Sep 17 00:00:00 2001 From: Olivia Appleton Date: Sat, 31 Aug 2024 01:32:47 -0500 Subject: [PATCH] isort --- python/src/p0070.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/p0070.py b/python/src/p0070.py index 694bcbb1..f5d72f3e 100644 --- a/python/src/p0070.py +++ b/python/src/p0070.py @@ -15,8 +15,8 @@ Find the value of $n$, $1 \\lt n \\lt 10^7$, for which $\\phi(n)$ is a permutation of $n$ and the ratio $n/\\phi(n)$ produces a minimum. """ -from itertools import chain from functools import reduce +from itertools import chain from .lib.primes import prime_factors