From 19b03ea3aed4afaa78bdca7e275373177662ebf9 Mon Sep 17 00:00:00 2001 From: Shibu-goswami <57540891+Shibu-goswami@users.noreply.github.com> Date: Sat, 30 Oct 2021 08:40:37 +0530 Subject: [PATCH] update the command line --- Python/blockchain/chinese_remainder_theorem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/blockchain/chinese_remainder_theorem.py b/Python/blockchain/chinese_remainder_theorem.py index 54d861d..3066449 100644 --- a/Python/blockchain/chinese_remainder_theorem.py +++ b/Python/blockchain/chinese_remainder_theorem.py @@ -14,7 +14,7 @@ from __future__ import annotations -# Extended Euclid +# function for Extended Euclid def extended_euclid(a: int, b: int) -> tuple[int, int]: """ >>> extended_euclid(10, 6)