$Search: ints

Go has fixed-size signed and unsigned integers:

It also has architecture-dependent integers:

Zero value of an integer is 0.

Convert int to string with strconv.Itoa

https://codeeval.dev/gist/e2402a6b79ffd884231020bf7054d02b

Convert int to string with fmt.Sprintf

https://codeeval.dev/gist/deca0b5f45db59db49bf9b812d66d897

Convert string to int with strconv.Atoi

https://codeeval.dev/gist/e7a9aeacf18465f8c8c3da328fcaa931

Convert string to int with fmt.Sscanf