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.
62 lines
1.1 KiB
62 lines
1.1 KiB
5 years ago
|
package main
|
||
5 years ago
|
|
||
|
import (
|
||
5 years ago
|
"github.com/01-edu/z01"
|
||
|
|
||
5 years ago
|
correct "./correct"
|
||
5 years ago
|
student "./student"
|
||
|
)
|
||
|
|
||
5 years ago
|
func main() {
|
||
5 years ago
|
functions := []func(string) bool{correct.IsNumeric, correct.IsLower, correct.IsUpper}
|
||
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[z01.RandIntBetween(0, len(functions)-1)]
|
||
|
table = append(table, node{
|
||
|
f: function,
|
||
|
a: z01.MultRandWords(),
|
||
|
})
|
||
5 years ago
|
}
|
||
|
for i := 0; i < 5; i++ {
|
||
5 years ago
|
table = append(table, node{
|
||
|
f: correct.IsNumeric,
|
||
|
a: z01.MultRandDigit(),
|
||
|
})
|
||
5 years ago
|
}
|
||
|
|
||
|
for i := 0; i < 5; i++ {
|
||
5 years ago
|
table = append(table, node{
|
||
|
f: correct.IsLower,
|
||
|
a: z01.MultRandLower(),
|
||
|
})
|
||
5 years ago
|
}
|
||
|
for i := 0; i < 5; i++ {
|
||
5 years ago
|
table = append(table, node{
|
||
|
f: correct.IsUpper,
|
||
|
a: z01.MultRandUpper(),
|
||
|
})
|
||
5 years ago
|
}
|
||
|
|
||
|
table = append(table,
|
||
|
node{
|
||
5 years ago
|
f: correct.IsNumeric,
|
||
|
a: []string{"Hello", "how", "are", "you"},
|
||
5 years ago
|
},
|
||
|
node{
|
||
5 years ago
|
f: correct.IsNumeric,
|
||
|
a: []string{"This", "is", "4", "you"},
|
||
5 years ago
|
},
|
||
|
)
|
||
|
|
||
|
for _, arg := range table {
|
||
5 years ago
|
z01.Challenge("Any", student.Any, correct.Any, arg.f, arg.a)
|
||
5 years ago
|
}
|
||
|
}
|