Skip to content

Commit 3064a79

Browse files
committed
Add links to zh-CN version of Factorial.
1 parent af77d1a commit 3064a79

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.zh-CN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ _Read this in other languages:_
5353

5454
* **数学**
5555
* `B` [Bit 操控](src/algorithms/math/bits) - set/get/update/clear 位、乘以/除以二进制位 、变负等
56-
* `B` [阶乘](src/algorithms/math/factorial)
56+
* `B` [阶乘](src/algorithms/math/factorial/README.zh-CN.md)
5757
* `B` [斐波那契数](src/algorithms/math/fibonacci) - `经典``闭式` 版本
5858
* `B` [素数检测](src/algorithms/math/primality-test) (排除法)
5959
* `B` [欧几里得算法](src/algorithms/math/euclidean-algorithm) - 计算最大公约数 (GCD)

src/algorithms/math/factorial/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Factorial
22

3+
_Read this in other languages:_
4+
[_简体中文_](README.zh-CN.md),
5+
36
In mathematics, the factorial of a non-negative integer `n`,
47
denoted by `n!`, is the product of all positive integers less
58
than or equal to `n`. For example:

0 commit comments

Comments
 (0)