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.
77 lines
1.2 KiB
77 lines
1.2 KiB
5 years ago
|
package main
|
||
5 years ago
|
|
||
|
import (
|
||
5 years ago
|
student "student"
|
||
|
|
||
|
"lib"
|
||
|
"lib/is"
|
||
5 years ago
|
)
|
||
|
|
||
5 years ago
|
func countIf(f func(string) bool, a []string) int {
|
||
5 years ago
|
counter := 0
|
||
5 years ago
|
for _, el := range a {
|
||
5 years ago
|
if f(el) {
|
||
|
counter++
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return counter
|
||
|
}
|
||
|
|
||
5 years ago
|
func main() {
|
||
5 years ago
|
functions := []func(string) bool{is.Digit, is.Lower, is.Upper}
|
||
5 years ago
|
|
||
|
type node struct {
|
||
5 years ago
|
f func(string) bool
|
||
|
a []string
|
||
5 years ago
|
}
|
||
|
|
||
|
table := []node{}
|
||
|
|
||
|
for i := 0; i < 5; i++ {
|
||
5 years ago
|
function := functions[lib.RandIntBetween(0, len(functions)-1)]
|
||
5 years ago
|
val := node{
|
||
5 years ago
|
f: function,
|
||
|
a: lib.MultRandWords(),
|
||
5 years ago
|
}
|
||
|
table = append(table, val)
|
||
|
}
|
||
|
for i := 0; i < 5; i++ {
|
||
|
val := node{
|
||
5 years ago
|
f: is.Digit,
|
||
|
a: lib.MultRandDigit(),
|
||
5 years ago
|
}
|
||
|
table = append(table, val)
|
||
|
}
|
||
|
|
||
|
for i := 0; i < 5; i++ {
|
||
|
val := node{
|
||
5 years ago
|
f: is.Lower,
|
||
|
a: lib.MultRandLower(),
|
||
5 years ago
|
}
|
||
|
table = append(table, val)
|
||
|
}
|
||
|
for i := 0; i < 5; i++ {
|
||
|
val := node{
|
||
5 years ago
|
f: is.Upper,
|
||
|
a: lib.MultRandUpper(),
|
||
5 years ago
|
}
|
||
|
table = append(table, val)
|
||
|
}
|
||
|
|
||
|
table = append(table,
|
||
|
node{
|
||
5 years ago
|
f: is.Digit,
|
||
|
a: []string{"Hello", "how", "are", "you"},
|
||
5 years ago
|
},
|
||
|
node{
|
||
5 years ago
|
f: is.Digit,
|
||
|
a: []string{"This", "is", "4", "you"},
|
||
5 years ago
|
},
|
||
|
)
|
||
|
|
||
|
for _, arg := range table {
|
||
5 years ago
|
lib.Challenge("CountIf", student.CountIf, countIf, arg.f, arg.a)
|
||
5 years ago
|
}
|
||
|
}
|