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.
31 lines
453 B
31 lines
453 B
package main |
|
|
|
import ( |
|
"strconv" |
|
|
|
"../lib" |
|
"./correct" |
|
"./student" |
|
) |
|
|
|
func main() { |
|
table := make([]string, 30) |
|
for i := range table { |
|
table[i] = strconv.Itoa(lib.RandPosZ()) |
|
} |
|
table = append(table, |
|
strconv.Itoa(lib.MaxInt), |
|
"", |
|
"0", |
|
"Invalid123", |
|
"123Invalid", |
|
"Invalid", |
|
"1Invalid23", |
|
"123", |
|
"123.", |
|
"123.0", |
|
) |
|
for _, arg := range table { |
|
lib.Challenge("BasicAtoi2", student.BasicAtoi2, correct.BasicAtoi2, arg) |
|
} |
|
}
|
|
|