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.
1.0 KiB
1.0 KiB
issorted
Instructions
Écrire une fonction IsSorted
qui retourne true
si la slice d'int
est triée, et qui retourne false
autrement.
La fonction passée en paramètre retourne un int
positive si a
(le premier argument) est supérieur à b
(le deuxième argument), elle retourne 0
si ils sont égaux et elle retourne un int
négatif autrement.
Pour faire vos tests, vous devez coder votre propre fonction f
.
Fonction attendue
func IsSorted(f func(a, b int) int, tab []int) bool {
}
Utilisation
Voici un éventuel programme pour tester votre fonction (sans f
) :
package main
import (
"fmt"
piscine ".."
)
func main() {
tab1 := []int{0, 1, 2, 3, 4, 5}
tab2 := []int{0, 2, 1, 3}
result1 := piscine.IsSorted(f, tab1)
result2 := piscine.IsSorted(f, tab2)
fmt.Println(result1)
fmt.Println(result2)
}
Et son résultat :
student@ubuntu:~/piscine-go/test$ go build
student@ubuntu:~/piscine-go/test$ ./test
true
false
student@ubuntu:~/piscine-go/test$