package solutions import ( "strconv" ) func Itoa(v int) string { return strconv.Itoa(v) }