From 79dbc1738a8097bd394eb54be3701f659b1961d3 Mon Sep 17 00:00:00 2001 From: Tiago Collot Date: Tue, 11 Oct 2022 17:38:05 +0100 Subject: [PATCH] docs(descendcomb): delete folder/file in wrong branch --- subjects/descendcombn/README.md | 47 --------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 subjects/descendcombn/README.md diff --git a/subjects/descendcombn/README.md b/subjects/descendcombn/README.md deleted file mode 100644 index fcd698ed..00000000 --- a/subjects/descendcombn/README.md +++ /dev/null @@ -1,47 +0,0 @@ -## descendcombn - -### Instructions - -- Write a function that prints all possible combinations of `n` different digits in descending order. - -- n will be defined as : 10 > n > 0 - -Below are the references for the **printing format** expected. - -- (for n = 1) '9, 8, ..., 3, 2, 1, 0' - -- (for n = 3) '987, 986, ..., 020, 019, 018, 017, 016, 015, 014, 013, 012' - -### Expected function - -```go -func DescendCombN(n int) { - -} -``` - -### Usage - -Here is a possible program to test your function : - -```go -package main - -import "piscine" - -func main() { - piscine.DescendCombN(9) - piscine.DescendCombN(3) - piscine.DescendCombN(1) -} -``` - -And its output : - -```console -$ go run . -9, 8, 7, 6, 5, 4, 3, 2, 1, 0 -987, 986, ..., 018, 017, 016, 015, 014, 013, 012 -987654321, ..., 976543210, 876543210 -$ -```