Browse Source

style(fromto): white-space, formmating

pull/2057/head
Tiago Collot 2 years ago committed by MSilva95
parent
commit
70b80604a2
  1. 22
      subjects/fromto/README.md

22
subjects/fromto/README.md

@ -1,8 +1,8 @@
## fromto
# fromto
### Instructions
- Write a function that takes two `integers` and returns a string representing the range of numbers from the first to the second.
- Write a function that takes two `integers` and returns a `string` representing the range of numbers from the first to the second.
- The function can return the numbers in any order.
- The number must be separated by a comma and a space.
<<<<<<< HEAD
@ -13,8 +13,12 @@
=======
- If any of the arguments is bigger than 99 or less than 0, the function returns `"invalid"` followed by a newline (`'\n'`).
<<<<<<< HEAD
- Add `0` at the first of any number if it is less than 10.
>>>>>>> docs(fromto):delete space
=======
- Add `0` at the first of any number if it is less than 10.
>>>>>>> style(fromto): white-space, formmating
- Add a new line (`'\n'`) at the end of the string.
### Expected function
@ -27,7 +31,7 @@ func FromTo(from int, to int) string {
### Usage
Here is a possible program to test your function :
Here is a possible program to test your function:
```go
package main
@ -35,14 +39,18 @@ package main
import "fmt"
func main() {
fmt.Print(FromTo(1, 10))
fmt.Print(FromTo(10, 1))
fmt.Print(FromTo(10, 10))
fmt.Print(FromTo(100, 10))
fmt.Print(FromTo(1, 10))
fmt.Print(FromTo(10, 1))
fmt.Print(FromTo(10, 10))
fmt.Print(FromTo(100, 10))
}
```
<<<<<<< HEAD
And its output :
=======
And its output:
>>>>>>> style(fromto): white-space, formmating
```console
$ go run . | cat -e

Loading…
Cancel
Save