From 464dc6ebc4ca3262811915bfcf5275009d172930 Mon Sep 17 00:00:00 2001 From: Xiangmingzhe Date: Wed, 4 Apr 2018 09:50:50 +0800 Subject: [PATCH] typo --- notes/Leetcode 题解.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/Leetcode 题解.md b/notes/Leetcode 题解.md index 9e49dff5..23fa4c97 100644 --- a/notes/Leetcode 题解.md +++ b/notes/Leetcode 题解.md @@ -2755,7 +2755,7 @@ int gcd(int a, int b) { } ``` -最大公倍数为两数的乘积除以最大公约数。 +最小公倍数为两数的乘积除以最大公约数。 ```java int lcm(int a, int b){