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.
30 lines
576 B
30 lines
576 B
package main |
|
|
|
import ( |
|
"../lib" |
|
"./correct" |
|
"./student" |
|
) |
|
|
|
func main() { |
|
table := [][4]int{ |
|
{3, 6, 5, 4}, |
|
{40, 40, 40, 60}, |
|
{201, 101, 101, 200}, |
|
} |
|
|
|
for i := 0; i < 25; i++ { |
|
first := lib.RandIntBetween(0, 877) |
|
second := lib.RandIntBetween(0, 877) |
|
third := lib.RandIntBetween(0, 877) |
|
table = append(table, [4]int{ |
|
first + second, |
|
second + third, |
|
first + third, |
|
first + second + third, |
|
}) |
|
} |
|
for _, arg := range table { |
|
lib.Challenge("Revivethreenums", student.ReviveThreeNums, correct.ReviveThreeNums, arg[0], arg[1], arg[2], arg[3]) |
|
} |
|
}
|
|
|