Skip to content

Commit 327f696

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 2edc2c6 commit 327f696

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

maths/basic_maths.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import math
44

5+
56
def gcd(a: int, b: int) -> int:
67
"""Calculate the Greatest Common Divisor (GCD) using Euclid's Algorithm.
78
>>> gcd(54, 24)
@@ -161,5 +162,3 @@ def euler_phi(n: int) -> int:
161162
import doctest
162163

163164
doctest.testmod()
164-
165-

0 commit comments

Comments
 (0)