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.
 
 
 
 
 
 
Hamza elkhatri 3130318a76 Update README.md 2 years ago
..
README.md Update README.md 2 years ago

README.md

between-us

Instructions

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

func BetweenUs(num, min, max int) bool {
    // Your code here
}

Usage

Here is a possible program to test your function:

package main

import "fmt"

func main(){
    fmt.Println(BetweenUs(1, 2, 3))
    fmt.Println(BetweenUs(1, 1, 3))
    fmt.Println(BetweenUs(1, 3, 3))
    fmt.Println(BetweenUs(1, 1, 1))
    fmt.Println(BetweenUs(1, 2, 1))
    fmt.Println(BetweenUs(-1, -10, 0))
}

and the output should be:

$ go run .
false
true
false
true
false
true