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.
751 B
751 B
advancedsortwordarr
Instructions
Écrire une fonction AdvancedSortWordArr
qui trie un tableau de string
, basé sur la fonction f
passée en paramètre.
Fonction attendue
func AdvancedSortWordArr(array []string, f func(a, b string) int) {
}
Utilisation
Voici un éventuel programme pour tester votre fonction :
package main
import (
"fmt"
piscine ".."
)
func main() {
result := []string{"a", "A", "1", "b", "B", "2", "c", "C", "3"}
piscine.AdvancedSortWordArr(result, piscine.Compare)
fmt.Println(result)
}
Et son résultat :
student@ubuntu:~/piscine-go/test$ go build
student@ubuntu:~/piscine-go/test$ ./test
[1 2 3 A B C a b c]
student@ubuntu:~/piscine-go/test$