public/subjects/printcomb2
Christopher Fremond 6c8047e665
Update README.md
2021-07-02 17:45:20 +01:00
..
README.md Update README.md 2021-07-02 17:45:20 +01:00

README.md

printcomb2

Instructions

Write a function that prints in ascending 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

func PrintComb2() {

}

Usage

Here is a possible program to test your function :

package main

import "piscine"

func main() {
	piscine.PrintComb2()
}

This is the incomplete output :

$ go run . | cat -e
00 01, 00 02, 00 03, ..., 00 98, 00 99, 01 02, 01 03, ..., 97 98, 97 99, 98 99$
$

Notions