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.
43 lines
795 B
43 lines
795 B
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 {
|
||
|
nbr string
|
||
|
baseFrom string
|
||
|
baseTo string
|
||
|
}
|
||
|
table := []node{}
|
||
|
|
||
|
for i := 0; i < 30; i++ {
|
||
5 years ago
|
validBaseToInput1 := base.Valid()
|
||
|
validBaseToInput2 := base.Valid()
|
||
5 years ago
|
str := base.ConvertNbr(lib.RandIntBetween(0, 1000000), validBaseToInput1)
|
||
5 years ago
|
val := node{
|
||
|
nbr: str,
|
||
|
baseFrom: validBaseToInput1,
|
||
|
baseTo: validBaseToInput2,
|
||
|
}
|
||
|
table = append(table, val)
|
||
|
}
|
||
|
|
||
|
table = append(table, node{
|
||
|
nbr: "101011",
|
||
|
baseFrom: "01",
|
||
|
baseTo: "0123456789"},
|
||
|
)
|
||
|
|
||
|
for _, arg := range table {
|
||
5 years ago
|
lib.Challenge("ConvertBase", student.ConvertBase, correct.ConvertBase, arg.nbr, arg.baseFrom, arg.baseTo)
|
||
5 years ago
|
}
|
||
|
}
|
||
5 years ago
|
|
||
|
// TODO: fix base exercises
|