public/subjects/itoa
Clement Denis 26b3a37cc0 move subjects to folders 2020-06-16 19:22:03 +02:00
..
README.md move subjects to folders 2020-06-16 19:22:03 +02:00

README.md

itoa

Instructions

  • Write a function that simulates the behaviour of the Itoa function in Go. Itoa transforms a number represented as anint in a number represented as a string.

  • For this exercise the handling of the signs + or - does have to be taken into account.

Expected function

func Itoa(n int) string {

}