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.
968 B
968 B
compact
Instructions
Écrire une fonction Compact
qui prend un pointeur sur slice de string
comme paramètre.
Cette fonction doit:
-
Retourner le nombre d'éléments avec des valeurs non-
nil
-
Comprimer, c.à.d., effacer les éléments qui ont une valeur
nil
dans la slice.
Fonction attendue
func Compact(ptr *[]string) int {
}
Utilisation
Voici un éventuel programme pour tester votre fonction :
package main
import (
"fmt"
piscine ".."
)
const N = 6
func main() {
arr := make([]string, N)
arr[0] = "a"
arr[2] = "b"
arr[4] = "c"
for _, v := range arr {
fmt.Println(v)
}
fmt.Println("Size after compacting:", piscine.Compact(&arr))
for _, v := range arr {
fmt.Println(v)
}
}
Et son résultat :
student@ubuntu:~/[[ROOT]]/test$ go build
student@ubuntu:~/[[ROOT]]/test$ ./test
a
b
c
Size after compacting: 3
a
b
c
student@ubuntu:~/[[ROOT]]/test$