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.
46 lines
780 B
46 lines
780 B
6 years ago
|
## countif
|
||
6 years ago
|
|
||
6 years ago
|
### Instructions
|
||
6 years ago
|
|
||
5 years ago
|
Write a function `CountIf` that returns the number of elements of a `string` slice for which the `f` function returns `true`.
|
||
6 years ago
|
|
||
6 years ago
|
### Expected function
|
||
6 years ago
|
|
||
|
```go
|
||
|
func CountIf(f func(string) bool, tab []string) int {
|
||
5 years ago
|
|
||
6 years ago
|
}
|
||
|
```
|
||
|
|
||
6 years ago
|
### Usage
|
||
6 years ago
|
|
||
5 years ago
|
Here is a possible program to test your function :
|
||
6 years ago
|
|
||
|
```go
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
piscine ".."
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
tab1 := []string{"Hello", "how", "are", "you"}
|
||
|
tab2 := []string{"This","1", "is", "4", "you"}
|
||
|
answer1 := piscine.CountIf(piscine.IsNumeric, tab1)
|
||
|
answer2 := piscine.CountIf(piscine.IsNumeric, tab2)
|
||
|
fmt.Println(answer1)
|
||
|
fmt.Println(answer2)
|
||
|
}
|
||
|
```
|
||
|
|
||
|
And its output :
|
||
|
|
||
|
```console
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
||
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
||
6 years ago
|
0
|
||
|
2
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$
|
||
6 years ago
|
```
|