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.
 
 
 
 

27 lines
709 B

package main
import (
"strings"
"github.com/01-edu/z01"
)
func main() {
arg1 := []string{"zpadinton", "paqefwtdjetyiytjneytjoeyjnejeyj"}
arg2 := []string{"ddf6vewg64f", "gtwthgdwthdwfteewhrtag6h4ffdhsd"}
arg3 := []string{""}
arg4 := []string{"rien", "cette phrase ne cache rien"}
arg5 := []string{" this is ", " wait shr"}
arg6 := []string{" more ", "then", "two", "arguments"}
str1 := z01.RandAlnum()
str2 := strings.Join([]string{z01.RandAlnum(), str1, z01.RandAlnum()}, "")
arg7 := []string{str1, str2}
arg8 := []string{z01.RandAlnum(), z01.RandAlnum()}
args := [][]string{arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8}
for _, v := range args {
z01.ChallengeMain("union", v...)
}
}