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.
53 lines
1.0 KiB
53 lines
1.0 KiB
5 years ago
|
package main
|
||
5 years ago
|
|
||
|
import (
|
||
5 years ago
|
student "student"
|
||
|
|
||
5 years ago
|
"./base"
|
||
5 years ago
|
"./correct"
|
||
5 years ago
|
"github.com/01-edu/public/go/lib"
|
||
5 years ago
|
)
|
||
|
|
||
5 years ago
|
func main() {
|
||
5 years ago
|
type node struct {
|
||
|
n int
|
||
|
base string
|
||
|
}
|
||
|
|
||
|
table := []node{}
|
||
|
|
||
|
// 15 random pairs of ints with valid bases
|
||
|
for i := 0; i < 15; i++ {
|
||
5 years ago
|
validBaseToInput := base.Valid()
|
||
5 years ago
|
val := node{
|
||
5 years ago
|
n: lib.RandIntBetween(-1000000, 1000000),
|
||
5 years ago
|
base: validBaseToInput,
|
||
|
}
|
||
|
table = append(table, val)
|
||
|
}
|
||
|
|
||
|
// 15 random pairs of ints with invalid bases
|
||
|
for i := 0; i < 15; i++ {
|
||
5 years ago
|
invalidBaseToInput := base.Invalid()
|
||
5 years ago
|
val := node{
|
||
5 years ago
|
n: lib.RandIntBetween(-1000000, 1000000),
|
||
5 years ago
|
base: invalidBaseToInput,
|
||
|
}
|
||
|
table = append(table, val)
|
||
|
}
|
||
|
|
||
|
table = append(table,
|
||
|
node{n: 125, base: "0123456789"},
|
||
|
node{n: -125, base: "01"},
|
||
|
node{n: 125, base: "0123456789ABCDEF"},
|
||
|
node{n: -125, base: "choumi"},
|
||
|
node{n: 125, base: "-ab"},
|
||
5 years ago
|
node{n: lib.MinInt, base: "0123456789"},
|
||
5 years ago
|
)
|
||
|
for _, arg := range table {
|
||
5 years ago
|
lib.Challenge("PrintNbrBase", student.PrintNbrBase, correct.PrintNbrBase, arg.n, arg.base)
|
||
5 years ago
|
}
|
||
|
}
|
||
5 years ago
|
|
||
|
// TODO: fix base exercises
|