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.

19 lines
252 B

package main
import (
"strconv"
"./student"
)
func itoa(i int) string {
return strconv.Itoa(i)
}
func main() {
for i := 0; i < 50; i++ {
arg := lib.RandIntBetween(-2000000000, 2000000000)
lib.Challenge("Itoa", student.Itoa, itoa, arg)
}
}