From 709f0892275505a1d4e3d80cb17f8842aa5f2166 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=E9=9B=B7=E8=92=BB?= <34390285+hsfzLZH1@users.noreply.github.com> Date: Sat, 20 Jul 2019 10:02:20 +0800 Subject: [PATCH] Update gcd.md MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 英文句号前后加了空格 --- docs/math/gcd.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/math/gcd.md b/docs/math/gcd.md index 6872ffc6..b646a54c 100644 --- a/docs/math/gcd.md +++ b/docs/math/gcd.md @@ -52,7 +52,7 @@ int gcd(int a, int b) { ## 最小公倍数 -接下来我们介绍如何求解最小公倍数(Least Common Multiple,LCM)。 +接下来我们介绍如何求解最小公倍数(Least Common Multiple , LCM)。 ### 两个数的 @@ -84,7 +84,7 @@ int gcd(int a, int b) { ## 扩展欧几里得定理 -扩展欧几里德定理(Extended Euclidean algorithm,EXGCD),常用于求 $ax+by=\gcd(a,b)$ 的一组可行解 +扩展欧几里德定理(Extended Euclidean algorithm , EXGCD),常用于求 $ax+by=\gcd(a,b)$ 的一组可行解 ## 证明 -- 2.11.0