mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
570 B
37 lines
570 B
2 years ago
|
## descendcomb
|
||
|
|
||
|
### Instructions
|
||
|
|
||
|
Write a function that prints in descending order and on a single line: all possible combinations of two different two-digit numbers.
|
||
|
|
||
|
These combinations are separated by a comma and a space.
|
||
|
|
||
|
### Expected function
|
||
|
|
||
|
```go
|
||
|
func DescendComb() {
|
||
|
|
||
|
}
|
||
|
```
|
||
|
|
||
|
### Usage
|
||
|
|
||
|
Here is a possible program to test your function:
|
||
|
|
||
|
```go
|
||
|
package main
|
||
|
|
||
|
import "piscine"
|
||
|
|
||
|
func main() {
|
||
|
piscine.DescendComb()
|
||
|
}
|
||
|
```
|
||
|
|
||
|
This is the incomplete output:
|
||
|
|
||
|
```console
|
||
|
$ go run . | cat -e
|
||
|
99 98, 99 97, 99 96, 99 95, 99 94, ..., 03 01, 03 00, 02 01, 02 00, 01 00$
|
||
|
```
|