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.
61 lines
1.1 KiB
61 lines
1.1 KiB
5 years ago
|
package main
|
||
|
|
||
5 years ago
|
import (
|
||
5 years ago
|
student "student"
|
||
|
|
||
|
"lib"
|
||
5 years ago
|
)
|
||
5 years ago
|
|
||
5 years ago
|
func max(ints ...int) int {
|
||
|
if len(ints) == 0 {
|
||
|
panic("max() is invalid")
|
||
5 years ago
|
}
|
||
5 years ago
|
max := ints[0]
|
||
|
for _, i := range ints[1:] {
|
||
|
if i > max {
|
||
|
max = i
|
||
|
}
|
||
5 years ago
|
}
|
||
5 years ago
|
return max
|
||
5 years ago
|
}
|
||
|
|
||
5 years ago
|
func reviveThreeNums(a, b, c, d int) int {
|
||
5 years ago
|
maxi := -111
|
||
|
if a != max(a, b, c, d) {
|
||
5 years ago
|
maxi = max(maxi, max(a, b, c, d)-a)
|
||
5 years ago
|
}
|
||
|
if b != max(a, b, c, d) {
|
||
5 years ago
|
maxi = max(maxi, max(a, b, c, d)-b)
|
||
5 years ago
|
}
|
||
|
if c != max(a, b, c, d) {
|
||
5 years ago
|
maxi = max(maxi, max(a, b, c, d)-c)
|
||
5 years ago
|
}
|
||
|
if d != max(a, b, c, d) {
|
||
5 years ago
|
maxi = max(maxi, max(a, b, c, d)-d)
|
||
5 years ago
|
}
|
||
|
return maxi
|
||
|
}
|
||
5 years ago
|
|
||
|
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, reviveThreeNums, arg[0], arg[1], arg[2], arg[3])
|
||
|
}
|
||
|
}
|