From a10009df64973e6d6934701d4367145af20bb63e Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Wed, 18 Apr 2018 13:05:07 +0300 Subject: [PATCH] Add factorial. --- src/algorithms/math/factorial/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithms/math/factorial/README.md b/src/algorithms/math/factorial/README.md index 06400c55..55c481a2 100644 --- a/src/algorithms/math/factorial/README.md +++ b/src/algorithms/math/factorial/README.md @@ -9,7 +9,7 @@ than or equal to `n`. For example: ``` | n | n! | -| ----- | :-------------------------: | +| ----- | --------------------------: | | 0 | 1 | | 1 | 1 | | 2 | 2 |