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.
31 lines
589 B
31 lines
589 B
5 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/01-edu/z01"
|
||
|
|
||
5 years ago
|
solutions "../../solutions"
|
||
5 years ago
|
)
|
||
|
|
||
5 years ago
|
func main() {
|
||
5 years ago
|
table := [][4]int{
|
||
|
{3, 6, 5, 4},
|
||
|
{40, 40, 40, 60},
|
||
|
{201, 101, 101, 200},
|
||
5 years ago
|
}
|
||
|
|
||
|
for i := 0; i < 25; i++ {
|
||
|
first := z01.RandIntBetween(0, 877)
|
||
|
second := z01.RandIntBetween(0, 877)
|
||
|
third := z01.RandIntBetween(0, 877)
|
||
5 years ago
|
table = append(table, [4]int{
|
||
|
first + second,
|
||
|
second + third,
|
||
|
first + third,
|
||
|
first + second + third,
|
||
|
})
|
||
5 years ago
|
}
|
||
|
for _, arg := range table {
|
||
5 years ago
|
z01.Challenge("Revivethreenums", ReviveThreeNums, solutions.ReviveThreeNums, arg[0], arg[1], arg[2], arg[3])
|
||
5 years ago
|
}
|
||
|
}
|