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.
45 lines
443 B
45 lines
443 B
package main |
|
|
|
import ( |
|
"strings" |
|
|
|
"github.com/01-edu/public/go/tests/lib" |
|
) |
|
|
|
func main() { |
|
table := []string{ |
|
"A", |
|
"a", |
|
"b", |
|
"c", |
|
"d", |
|
"e", |
|
"f", |
|
"g", |
|
"h", |
|
"i", |
|
"j", |
|
"k", |
|
"l", |
|
"m", |
|
"n", |
|
"o", |
|
"p", |
|
"q", |
|
"r", |
|
"s", |
|
"t", |
|
"u", |
|
"v", |
|
"w", |
|
"x", |
|
"y", |
|
"z", |
|
"Z", |
|
"2 arguments", |
|
"4 arguments so invalid", |
|
} |
|
for _, s := range table { |
|
lib.ChallengeMain("printrot", strings.Fields(s)...) |
|
} |
|
}
|
|
|