From 916115381be0ef9c97260ca935ade2e7e82ccff8 Mon Sep 17 00:00:00 2001 From: Tibor Bizjak Date: Sun, 26 Mar 2023 23:00:14 +0200 Subject: [PATCH] Fixed import --- 504_square_on_the_inside.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/504_square_on_the_inside.py b/504_square_on_the_inside.py index 7f102d8..5e3bab2 100644 --- a/504_square_on_the_inside.py +++ b/504_square_on_the_inside.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -from fractions import gcd +from math import gcd from itertools import combinations_with_replacement as combs from math import sqrt