From 3a08d55a2ffdce7f86909f9c85c398d6a9e196ac Mon Sep 17 00:00:00 2001 From: jrosendo Date: Tue, 6 Dec 2022 17:36:56 +0000 Subject: [PATCH] fix(binarycheck): fix branch --- subjects/binarycheck/README.md | 44 ++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 subjects/binarycheck/README.md diff --git a/subjects/binarycheck/README.md b/subjects/binarycheck/README.md new file mode 100644 index 00000000..7037f943 --- /dev/null +++ b/subjects/binarycheck/README.md @@ -0,0 +1,44 @@ +## binarycheck + +### Instructions + +Write a function that takes an int as an argument and returns 0 if the number is odd, and 1 if the number is even. + +### Expected function + +func BinaryCheck(nbr int) int { + +} + +### Usage + +Here is a possible program to test your function: + +```go +package main + +import ( + "fmt" + + "piscine" +) + +func main() { + fmt.Println(piscine.BinaryCheck(5)) + fmt.Println(piscine.BinaryCheck(0)) + fmt.Println(piscine.BinaryCheck(8)) + fmt.Println(piscine.BinaryCheck(-9)) + fmt.Println(piscine.BinaryCheck(-4)) +} +``` + +And its output: + +```console +$ go run . +0 +1 +1 +0 +1 +```