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.
884 B
884 B
makerange
Instructions
Écrire une fonction qui prend un int
minimum et un int
maximum comme paramètres. Cette fonction retournes une slice d'int
avec toutes les valeurs comprises entre le minimum et le maximum.
Le minimum est inclus, le maximum est exclu.
Si le minimum est supérieur ou égal au maximum, une slice nil
est retournée.
append
n'est pas autorisé pour cet exercice.
Fonction attendue
func MakeRange(min, max int) []int {
}
Utilisation
Voici un éventuel programme pour tester votre fonction :
package main
import (
"fmt"
piscine ".."
)
func main() {
fmt.Println(piscine.MakeRange(5, 10))
fmt.Println(piscine.MakeRange(10, 5))
}
Et son résultat :
student@ubuntu:~/[[ROOT]]/test$ go build
student@ubuntu:~/[[ROOT]]/test$ ./test
[5 6 7 8 9]
[]
student@ubuntu:~/[[ROOT]]/test$