From 8d30c012851da32513f5aa5de046423549d6858d Mon Sep 17 00:00:00 2001 From: Augusto Date: Wed, 24 Apr 2019 18:26:31 +0100 Subject: [PATCH] itoa --- subjects/itoa.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 subjects/itoa.md diff --git a/subjects/itoa.md b/subjects/itoa.md new file mode 100644 index 00000000..9295201d --- /dev/null +++ b/subjects/itoa.md @@ -0,0 +1,14 @@ +## itoa + +### Instructions + +Write a function that takes an int and converts it to a string. +The function returns the result in a char array that you must allocate. + +## Expected function + +```go +func Itoa(n int) int { + +} +``` \ No newline at end of file