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.
42 lines
795 B
42 lines
795 B
package main |
|
|
|
import ( |
|
student "student" |
|
|
|
"./base" |
|
"./correct" |
|
"github.com/01-edu/public/go/lib" |
|
) |
|
|
|
func main() { |
|
type node struct { |
|
nbr string |
|
baseFrom string |
|
baseTo string |
|
} |
|
table := []node{} |
|
|
|
for i := 0; i < 30; i++ { |
|
validBaseToInput1 := base.Valid() |
|
validBaseToInput2 := base.Valid() |
|
str := base.ConvertNbr(lib.RandIntBetween(0, 1000000), validBaseToInput1) |
|
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 { |
|
lib.Challenge("ConvertBase", student.ConvertBase, correct.ConvertBase, arg.nbr, arg.baseFrom, arg.baseTo) |
|
} |
|
} |
|
|
|
// TODO: fix base exercises
|
|
|