You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
688 B

5 years ago
## makerange
5 years ago
### Instructions
Write a function that takes an `int` min and an `int` max as parameters.
3 years ago
The function must return a slice of `int`s with all the values between min and max.
Min is included, and max is excluded.
If min is greater than or equal to max, a `nil` slice is returned.
`append` is not allowed for this exercise.
5 years ago
### Expected function
```go
func MakeRange(min, max int) []int {
5 years ago
}
```
5 years ago
### Usage
Here is a possible program to test your function :
```go
package main
import (
"fmt"
"piscine"
)
func main() {
fmt.Println(piscine.MakeRange(5, 10))
fmt.Println(piscine.MakeRange(10, 5))
}
```
And its output :
```console
$ go run .
[5 6 7 8 9]
[]
$
```