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.
 
 
 
 

42 lines
543 B

package main
import (
"strconv"
student "student"
"lib"
)
func atoi(s string) int {
n, _ := strconv.Atoi(s)
return n
}
func main() {
table := make([]string, 30)
for i := range table {
table[i] = strconv.Itoa(lib.RandInt())
}
table = append(table,
strconv.Itoa(lib.MinInt),
strconv.Itoa(lib.MaxInt),
"",
"-",
"+",
"0",
"+0",
"-Invalid123",
"--123",
"-+123",
"++123",
"123-",
"123+",
"123.",
"123.0",
"123a45",
)
for _, arg := range table {
lib.Challenge("Atoi", student.Atoi, atoi, arg)
}
}