diff --git a/subjects/itoa.en.md b/subjects/itoa.en.md new file mode 100644 index 00000000..f613beb4 --- /dev/null +++ b/subjects/itoa.en.md @@ -0,0 +1,15 @@ +## itoa + +### Instructions + +- Write a function that simulates the behaviour of the `Itoa` function in Go. `Itoa` transforms a number represented as an`int` 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 + +```go +func Itoa(n int) string { + +} +``` diff --git a/subjects/itoa.md b/subjects/itoa.md deleted file mode 100644 index 9295201d..00000000 --- a/subjects/itoa.md +++ /dev/null @@ -1,14 +0,0 @@ -## 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