Browse Source

Update README.md

pull/1285/head
Hamza elkhatri 2 years ago committed by David Mata
parent
commit
3130318a76
  1. 11
      subjects/betweenus/README.md

11
subjects/betweenus/README.md

@ -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

Loading…
Cancel
Save