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.
 
 
 
 

24 lines
327 B

package main
import (
"strconv"
"github.com/01-edu/z01"
)
func main() {
rand := []string{
"0",
"4000",
"5000",
"12433",
"hello",
"good luck",
}
for i := 0; i < 7; i++ {
rand = append(rand, strconv.Itoa(z01.RandIntBetween(0, 4000)))
}
for _, v := range rand {
z01.ChallengeMain("romannumbers", v)
}
}