From 97919bb9a5684ec9222ed6ac88781c51b80800ee Mon Sep 17 00:00:00 2001 From: Azamat Alimbayev <53107596+azakost@users.noreply.github.com> Date: Mon, 2 Dec 2019 12:22:33 +0600 Subject: [PATCH] Little fix If you passing parameter with '2' it should have output like these 01, 02, 03, 04, 05, 06, 07, ... 67, 78, 89 OR you just have to simply replace 3 by 2 --- subjects/printcombn.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/printcombn.en.md b/subjects/printcombn.en.md index 96e12867..2d142004 100644 --- a/subjects/printcombn.en.md +++ b/subjects/printcombn.en.md @@ -31,7 +31,7 @@ import piscine ".." func main() { piscine.PrintCombN(1) - piscine.PrintCombN(2) + piscine.PrintCombN(3) piscine.PrintCombN(9) } ```