$Search: ints
Go has fixed-size signed and unsigned integers:
int8, uint8byte is an alias for uint8int16, uint16int32, uint32rune is an alias for int32int64, uint64It also has architecture-dependent integers:
int is int32 on 32-bit processors and int64 on 64-bit processorsuint is uint32 on 32-bit processors and uint64 on 64-bit processorsZero value of an integer is 0.
strconv.Itoahttps://codeeval.dev/gist/e2402a6b79ffd884231020bf7054d02b
fmt.Sprintfhttps://codeeval.dev/gist/deca0b5f45db59db49bf9b812d66d897
strconv.Atoihttps://codeeval.dev/gist/e7a9aeacf18465f8c8c3da328fcaa931
fmt.Sscanf