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.
30 lines
733 B
30 lines
733 B
package main |
|
|
|
import ( |
|
"strings" |
|
|
|
"github.com/01-edu/z01" |
|
) |
|
|
|
func main() { |
|
table := append(z01.MultRandWords(), |
|
"padinton paqefwtdjetyiytjneytjoeyjnejeyj", |
|
"ddf6vewg64f twthgdwthdwfteewhrtag6h4ffdhsd", |
|
) |
|
table = append(table, "abcdefghij efghijlmnopq") |
|
table = append(table, "123456 456789") |
|
table = append(table, "1 1") |
|
table = append(table, "1 2") |
|
|
|
for i := 0; i < 5; i++ { |
|
str1 := z01.RandAlnum() |
|
str2 := strings.Join([]string{z01.RandAlnum(), str1, z01.RandAlnum()}, "") |
|
|
|
table = append(table, strings.Join([]string{str1, str2}, " ")) |
|
table = append(table, strings.Join([]string{z01.RandAlnum(), z01.RandAlnum()}, " ")) |
|
} |
|
|
|
for _, s := range table { |
|
z01.ChallengeMain("inter", strings.Fields(s)...) |
|
} |
|
}
|
|
|