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.
43 lines
543 B
43 lines
543 B
5 years ago
|
package main
|
||
5 years ago
|
|
||
|
import (
|
||
|
"strconv"
|
||
|
|
||
5 years ago
|
student "student"
|
||
|
|
||
|
"lib"
|
||
5 years ago
|
)
|
||
|
|
||
5 years ago
|
func atoi(s string) int {
|
||
|
n, _ := strconv.Atoi(s)
|
||
|
return n
|
||
|
}
|
||
|
|
||
5 years ago
|
func main() {
|
||
5 years ago
|
table := make([]string, 30)
|
||
|
for i := range table {
|
||
5 years ago
|
table[i] = strconv.Itoa(lib.RandInt())
|
||
5 years ago
|
}
|
||
|
table = append(table,
|
||
5 years ago
|
strconv.Itoa(lib.MinInt),
|
||
|
strconv.Itoa(lib.MaxInt),
|
||
5 years ago
|
"",
|
||
|
"-",
|
||
|
"+",
|
||
|
"0",
|
||
|
"+0",
|
||
|
"-Invalid123",
|
||
|
"--123",
|
||
|
"-+123",
|
||
|
"++123",
|
||
|
"123-",
|
||
|
"123+",
|
||
|
"123.",
|
||
|
"123.0",
|
||
|
"123a45",
|
||
|
)
|
||
|
for _, arg := range table {
|
||
5 years ago
|
lib.Challenge("Atoi", student.Atoi, atoi, arg)
|
||
5 years ago
|
}
|
||
|
}
|