public/subjects/appendrange
Pav01Founders 4d9d0e6882
Update README.md
Updated instructions.
2021-10-14 13:11:39 +01:00
..
README.md Update README.md 2021-10-14 13:11:39 +01:00

README.md

appendrange

Instructions

Write a function that takes an int min and an int max as parameters. The function should return a slice of ints with all the values between the min and max.

Min is included, and max is excluded.

If min is greater than or equal to max, a nil slice is returned.

make is not allowed for this exercise.

Expected function

func AppendRange(min, max int) []int {

}

Usage

Here is a possible program to test your function :

package main

import (
	"fmt"
	"piscine"
)

func main() {
	fmt.Println(piscine.AppendRange(5, 10))
	fmt.Println(piscine.AppendRange(10, 5))
}

And its output :

$ go run .
[5 6 7 8 9]
[]
$