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.
 
 
 
 

30 lines
367 B

package main
import (
"strconv"
"lib"
)
func main() {
table := []string{
" ",
"1",
"1 1",
"hello",
"p 1",
"804577",
"225225",
"8333325",
"42",
"9539",
"1000002",
"1000003",
}
for i := 0; i < 10; i++ {
table = append(table, strconv.Itoa(lib.RandIntBetween(1, 100)))
}
for _, s := range table {
lib.ChallengeMain("fprime", s)
}
}