mirror of https://github.com/01-edu/public.git
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.
350 B
350 B
itoa
Instructions
-
Écrire une fonction qui reproduit le comportement de la fonction
Itoa
en Go.Itoa
transforme un nombre représenté enint
(entier) enstring
(chaîne de caractères). -
Pour cet exercice la gestion des signes + ou - doit être prise en compte.
Fonction attendue
func Itoa(n int) string {
}