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
524 B

package main
import (
"strings"
"lib"
)
func main() {
args := append(lib.MultRandWords(),
"padinton paqefwtdjetyiytjneytjoeyjnejeyj",
"ddf6vewg64f twthgdwthdwfteewhrtag6h4ffdhsd",
"abcdefghij efghijlmnopq",
"123456 456789",
"1 1",
"1 2",
)
for i := 0; i < 5; i++ {
s1 := lib.RandAlnum()
s2 := lib.RandAlnum() + s1 + lib.RandAlnum()
args = append(args,
s1+" "+s2,
lib.RandAlnum()+" "+lib.RandAlnum(),
)
}
for _, s := range args {
lib.ChallengeMain("inter", strings.Fields(s)...)
}
}