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.
25 lines
451 B
25 lines
451 B
package main |
|
|
|
import ( |
|
"strconv" |
|
"strings" |
|
|
|
"github.com/01-edu/z01" |
|
) |
|
|
|
func main() { |
|
var arg []string |
|
for i := 0; i < 20; i++ { |
|
arg = append(arg, strconv.Itoa(z01.RandIntBetween(0, 255))) |
|
} |
|
arg = append(arg, "") |
|
arg = append(arg, "a") |
|
arg = append(arg, "bc") |
|
arg = append(arg, "def") |
|
arg = append(arg, "notanumber") |
|
arg = append(arg, z01.RandBasic()) |
|
|
|
for _, v := range arg { |
|
z01.ChallengeMain("printbits", strings.Fields(v)...) |
|
} |
|
}
|
|
|