Update README.md

This commit is contained in:
Hamza elkhatri 2022-06-21 10:37:24 +01:00 committed by David Mata
parent d66915e3b0
commit 3130318a76
1 changed files with 8 additions and 3 deletions

View File

@ -1,9 +1,12 @@
## between-us
write a function named `BetweenUs` that takes 3 paramters and return :
- if the first paramter is between the second and third paramters, return **true** else return **false**
### Instructions
### Function
Write a function named `BetweenUs` that takes 3 paramters and return :
- If the first paramter is between the second and third paramters, return **true** else return **false**
- If the second parameter is bigger than the third return **false**
### Expected function
```go
func BetweenUs(num, min, max int) bool {
// Your code here
@ -30,6 +33,8 @@ func main(){
}
```
and the output should be:
```console
$ go run .
false