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.

32 lines
499 B

package main
import (
"strconv"
"strings"
"github.com/01-edu/z01"
)
func main() {
table := []string{{
"--upper 8 5 25",
"8 5 12 12 15",
"12 5 7 5 14 56 4 1 18 25",
"12 5 7 5 14 56 4 1 18 25 32 86 h",
"32 86 h",
"",
}}
for i := 0; i < 5; i++ {
m := z01.MultRandIntBetween(1, 46)
s := ""
for _, j := range m {
s += strconv.Itoa(j) + " "
}
table = append(table, s)
}
for _, args := range table {
z01.ChallengeMain("nbrconvertalpha", strings.Fields(args)...)
}
}