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