From ef8a775e68640241208780a05fa85ddceba6d3ae Mon Sep 17 00:00:00 2001 From: Hamza elkhatri <40549481+Hamzaelkhatri@users.noreply.github.com> Date: Thu, 9 Jun 2022 17:57:34 +0100 Subject: [PATCH] Delete README.md --- subjects/buzzinga/README.md | 43 ------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 subjects/buzzinga/README.md diff --git a/subjects/buzzinga/README.md b/subjects/buzzinga/README.md deleted file mode 100644 index c95bdc1e..00000000 --- a/subjects/buzzinga/README.md +++ /dev/null @@ -1,43 +0,0 @@ -# buzzinga - -### Instructions -- Write a function named `buzZinga()` that takes a number as an argument and prints the following: - - If the number is divisible by 3, print `Buz` followed by ('`\n`') - - If the number is divisible by 5, print `Zinga` followed by ('`\n`') - - If the number is divisible by 3 and 5, print `BuzZinga` followed by ('`\n`') - - If the number is not divisible by 3 or 5, print `*` followed by ('`\n`') -### Expected function -```go -func buzZinga(number int) { - -} -``` -### Usage -```go -package main - -func main() { - n := int32(15) - buzZinga(n) -} -``` -And its output : - -```go -$ go run . | cat -e -*$ -*$ -Buz$ -*$ -Zinga$ -Buz$ -*$ -*$ -Buz$ -Zinga$ -*$ -Buz$ -*$ -*$ -BuzZinga$ -``` \ No newline at end of file