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.
|
package main |
|
|
|
import ( |
|
"strconv" |
|
|
|
"lib" |
|
) |
|
|
|
func main() { |
|
rand := []string{ |
|
"0", |
|
"4000", |
|
"5000", |
|
"12433", |
|
"hello", |
|
"good luck", |
|
} |
|
for i := 0; i < 7; i++ { |
|
rand = append(rand, strconv.Itoa(lib.RandIntBetween(0, 4000))) |
|
} |
|
for _, v := range rand { |
|
lib.ChallengeMain("romannumbers", v) |
|
} |
|
}
|
|
|