From d13e86d52c63ab7e7f42399a6e2d3ecfa312c838 Mon Sep 17 00:00:00 2001 From: armanospan Date: Tue, 22 Oct 2019 10:58:37 +0600 Subject: [PATCH 1/4] printnbrinorder instructions correction --- subjects/printnbrinorder.en.md | 2 +- subjects/printnbrinorder.fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/printnbrinorder.en.md b/subjects/printnbrinorder.en.md index 58147ff7..4569e984 100644 --- a/subjects/printnbrinorder.en.md +++ b/subjects/printnbrinorder.en.md @@ -2,7 +2,7 @@ ### Instructions -Write a function that prints an `int` passed in parameter. +Write a function that prints digits of an `int` passed in parameter in ascending order. All possible values of type `int` have to go through, besides negative numbers. Convertion to `int64` is not allowed. diff --git a/subjects/printnbrinorder.fr.md b/subjects/printnbrinorder.fr.md index 58147ff7..4569e984 100644 --- a/subjects/printnbrinorder.fr.md +++ b/subjects/printnbrinorder.fr.md @@ -2,7 +2,7 @@ ### Instructions -Write a function that prints an `int` passed in parameter. +Write a function that prints digits of an `int` passed in parameter in ascending order. All possible values of type `int` have to go through, besides negative numbers. Convertion to `int64` is not allowed. From 73fb75166f851da71a4557a224535a89121a1b9a Mon Sep 17 00:00:00 2001 From: Christopher Fremond <34804391+Frenchris@users.noreply.github.com> Date: Tue, 22 Oct 2019 10:30:03 +0100 Subject: [PATCH 2/4] Update printnbrinorder.en.md --- subjects/printnbrinorder.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/printnbrinorder.en.md b/subjects/printnbrinorder.en.md index 4569e984..3e3e2cda 100644 --- a/subjects/printnbrinorder.en.md +++ b/subjects/printnbrinorder.en.md @@ -2,7 +2,7 @@ ### Instructions -Write a function that prints digits of an `int` passed in parameter in ascending order. +Write a function that prints the digits of an `int` passed in parameter in ascending order. All possible values of type `int` have to go through, besides negative numbers. Convertion to `int64` is not allowed. From c619ad4b803e600964dc62e062aeaccf3991971e Mon Sep 17 00:00:00 2001 From: Christopher Fremond <34804391+Frenchris@users.noreply.github.com> Date: Tue, 22 Oct 2019 10:30:24 +0100 Subject: [PATCH 3/4] Update printnbrinorder.en.md --- subjects/printnbrinorder.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/printnbrinorder.en.md b/subjects/printnbrinorder.en.md index 3e3e2cda..f5fa53a7 100644 --- a/subjects/printnbrinorder.en.md +++ b/subjects/printnbrinorder.en.md @@ -2,7 +2,7 @@ ### Instructions -Write a function that prints the digits of an `int` passed in parameter in ascending order. +Write a function which prints the digits of an `int` passed in parameter in ascending order. All possible values of type `int` have to go through, besides negative numbers. Convertion to `int64` is not allowed. From ec5a5c4e54bd81ff569704674318a88331c63f18 Mon Sep 17 00:00:00 2001 From: Christopher Fremond <34804391+Frenchris@users.noreply.github.com> Date: Tue, 22 Oct 2019 10:30:49 +0100 Subject: [PATCH 4/4] Update printnbrinorder.fr.md --- subjects/printnbrinorder.fr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/printnbrinorder.fr.md b/subjects/printnbrinorder.fr.md index 4569e984..f5fa53a7 100644 --- a/subjects/printnbrinorder.fr.md +++ b/subjects/printnbrinorder.fr.md @@ -2,7 +2,7 @@ ### Instructions -Write a function that prints digits of an `int` passed in parameter in ascending order. +Write a function which prints the digits of an `int` passed in parameter in ascending order. All possible values of type `int` have to go through, besides negative numbers. Convertion to `int64` is not allowed.