mirror of https://github.com/01-edu/public.git
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.
Tiago Collot
e62a381533
|
2 years ago | |
---|---|---|
.. | ||
README.md | 2 years ago |
README.md
descendappendrange
Instructions
-
Write a function that takes an
int
max and anint
min as parameters. The function should return a slice ofint
s with all the values between the max and min. -
The
max
must be included, andmin
must be excluded. -
If
max
is inferior than or equal tomin
, return an empty slice. -
make()
is not allowed for this exercise.
Expected function
func DescendAppendRange(max, min int) []int {
}
Usage
Here is a possible program to test your function:
package main
import (
"fmt"
"piscine"
)
func main() {
fmt.Println(piscine.DescendAppendRange(10, 5))
fmt.Println(piscine.DescendAppendRange(5, 10))
}
And its output:
$ go run . | cat -e
[10 9 8 7 6]
[]
$