mirror of https://github.com/01-edu/public.git
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
542 B
32 lines
542 B
5 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"strings"
|
||
|
|
||
|
"github.com/01-edu/z01"
|
||
|
)
|
||
|
|
||
5 years ago
|
func main() {
|
||
5 years ago
|
args := append(z01.MultRandWords(),
|
||
5 years ago
|
"padinton paqefwtdjetyiytjneytjoeyjnejeyj",
|
||
|
"ddf6vewg64f twthgdwthdwfteewhrtag6h4ffdhsd",
|
||
5 years ago
|
"abcdefghij efghijlmnopq",
|
||
|
"123456 456789",
|
||
|
"1 1",
|
||
|
"1 2",
|
||
5 years ago
|
)
|
||
|
|
||
|
for i := 0; i < 5; i++ {
|
||
5 years ago
|
s1 := z01.RandAlnum()
|
||
|
s2 := z01.RandAlnum() + s1 + z01.RandAlnum()
|
||
|
args = append(args,
|
||
|
s1+" "+s2,
|
||
|
z01.RandAlnum()+" "+z01.RandAlnum(),
|
||
|
)
|
||
5 years ago
|
}
|
||
|
|
||
5 years ago
|
for _, s := range args {
|
||
5 years ago
|
z01.ChallengeMain("inter", strings.Fields(s)...)
|
||
5 years ago
|
}
|
||
|
}
|