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.
29 lines
438 B
29 lines
438 B
package main |
|
|
|
import ( |
|
"strconv" |
|
"strings" |
|
|
|
"github.com/01-edu/z01" |
|
) |
|
|
|
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(z01.RandIntBetween(-1000, 2000000000))) |
|
} |
|
|
|
for i := 0; i < 15; i++ { |
|
table = append(table, strconv.Itoa(i)) |
|
} |
|
|
|
for _, s := range table { |
|
z01.ChallengeMain("printhex", strings.Fields(s)...) |
|
} |
|
}
|
|
|