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.
31 lines
464 B
31 lines
464 B
5 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"strconv"
|
||
|
"strings"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/01-edu/z01"
|
||
|
)
|
||
|
|
||
|
func TestPrintHex(t *testing.T) {
|
||
|
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.ChallengeMainExam(t, strings.Fields(s)...)
|
||
|
}
|
||
|
}
|