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.
50 lines
930 B
50 lines
930 B
5 years ago
|
package main
|
||
5 years ago
|
|
||
|
import (
|
||
5 years ago
|
"github.com/01-edu/z01"
|
||
|
|
||
5 years ago
|
solutions "./solutions"
|
||
|
student "./student"
|
||
|
)
|
||
|
|
||
5 years ago
|
func main() {
|
||
5 years ago
|
type node struct {
|
||
|
min int
|
||
|
max int
|
||
|
}
|
||
|
table := []node{}
|
||
|
|
||
5 years ago
|
// 15 random pairs of ints for a Valid Range
|
||
5 years ago
|
for i := 0; i < 15; i++ {
|
||
|
minVal := z01.RandIntBetween(-10000000, 1000000)
|
||
|
gap := z01.RandIntBetween(1, 20)
|
||
|
val := node{
|
||
|
min: minVal,
|
||
|
max: minVal + gap,
|
||
|
}
|
||
|
table = append(table, val)
|
||
|
}
|
||
5 years ago
|
|
||
|
// 15 random pairs of ints with ||invalid range||
|
||
5 years ago
|
for i := 0; i < 15; i++ {
|
||
|
minVal := z01.RandIntBetween(-10000000, 1000000)
|
||
|
gap := z01.RandIntBetween(1, 20)
|
||
|
val := node{
|
||
|
min: minVal,
|
||
|
max: minVal - gap,
|
||
|
}
|
||
|
table = append(table, val)
|
||
|
}
|
||
|
|
||
|
table = append(table,
|
||
|
node{min: 0, max: 1},
|
||
|
node{min: 0, max: 0},
|
||
|
node{min: 5, max: 10},
|
||
|
node{min: 10, max: 5},
|
||
|
)
|
||
|
|
||
|
for _, arg := range table {
|
||
5 years ago
|
z01.Challenge("AppendRange", student.AppendRange, solutions.AppendRange, arg.min, arg.max)
|
||
5 years ago
|
}
|
||
|
}
|