From 72f33ca843678b4d99be1c0b65c7d2b674b13d6e Mon Sep 17 00:00:00 2001 From: stud203788 Date: Fri, 17 Apr 2026 22:38:06 +0300 Subject: [PATCH] Add sceleton gcd function --- solution8.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 solution8.py diff --git a/solution8.py b/solution8.py new file mode 100644 index 0000000..e3164b1 --- /dev/null +++ b/solution8.py @@ -0,0 +1,2 @@ +def gcd(a: int, b: int) -> int: + pass