Update README.md

Updated instructions.
This commit is contained in:
Pav01Founders 2021-10-14 13:11:39 +01:00 committed by GitHub
parent 06078ec517
commit 4d9d0e6882
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2,11 +2,11 @@
### Instructions
Write a function that takes an `int` min and an `int` max as parameters. That function returns a slice of `int`s with all the values between min and max.
Write a function that takes an `int` min and an `int` max as parameters. The function should return a slice of `int`s with all the values between the min and max.
Min is included, and max is excluded.
If min is superior or equal to max, a `nil` slice is returned.
If min is greater than or equal to max, a `nil` slice is returned.
`make` is not allowed for this exercise.