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.

30 lines
423 B

package main
import (
"strconv"
"strings"
"../lib"
)
func main() {
var table []string
table = append(table,
" ",
"123 132 1",
"1 5",
"0",
)
for i := 0; i < 10; i++ {
table = append(table, strconv.Itoa(lib.RandIntBetween(-1000, 2000000000)))
}
for i := 0; i < 15; i++ {
table = append(table, strconv.Itoa(i))
}
for _, s := range table {
lib.ChallengeMain("printhex", strings.Fields(s)...)
}
}