mirror of https://github.com/01-edu/public.git
Augusto
6 years ago
committed by
Frenchris
1 changed files with 14 additions and 0 deletions
@ -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 { |
||||
|
||||
} |
||||
``` |
Loading…
Reference in new issue