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.
44 lines
802 B
44 lines
802 B
5 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/01-edu/z01"
|
||
5 years ago
|
|
||
5 years ago
|
correct "./correct"
|
||
5 years ago
|
student "./student"
|
||
5 years ago
|
)
|
||
|
|
||
5 years ago
|
func main() {
|
||
5 years ago
|
f := []func(int, int) int{
|
||
|
func(accumulator, currentValue int) int {
|
||
|
return accumulator + currentValue
|
||
|
},
|
||
|
func(accumulator, currentValue int) int {
|
||
|
return accumulator - currentValue
|
||
|
},
|
||
|
func(accumulator, currentValue int) int {
|
||
|
return currentValue * accumulator
|
||
|
},
|
||
|
}
|
||
5 years ago
|
argInt := []int{}
|
||
|
|
||
|
type node struct {
|
||
5 years ago
|
a []int
|
||
5 years ago
|
functions []func(int, int) int
|
||
|
}
|
||
|
|
||
|
table := []node{}
|
||
|
for i := 0; i < 4; i++ {
|
||
|
argInt = z01.MultRandIntBetween(0, 50)
|
||
5 years ago
|
table = append(table, node{
|
||
|
a: argInt,
|
||
5 years ago
|
functions: f,
|
||
5 years ago
|
})
|
||
5 years ago
|
}
|
||
|
|
||
|
for _, v := range table {
|
||
|
for _, f := range v.functions {
|
||
5 years ago
|
z01.Challenge("ReduceInt", student.ReduceInt, correct.ReduceInt, f, v.a)
|
||
5 years ago
|
}
|
||
|
}
|
||
|
}
|