From 0a78c8314911131552f10120842b182b55623768 Mon Sep 17 00:00:00 2001 From: zainabdnaya Date: Thu, 14 Jul 2022 16:39:04 +0100 Subject: [PATCH] corrected --- subjects/countstars/README.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/subjects/countstars/README.md b/subjects/countstars/README.md index 328b4e59..0179f508 100644 --- a/subjects/countstars/README.md +++ b/subjects/countstars/README.md @@ -1,12 +1,12 @@ ## CountStars ### Instructions -Write a function called CountStars that counts the stars up to a number given as an argument. + +Write a function called `CountStars` that counts the stars up to a number given as an argument. + - If the number is negative or equal to 0, return "`No stars`" - No need to manage overflow. -The Library strconv is allowed. - ### Expected Function ```go @@ -14,15 +14,15 @@ func CountStars(num int) string { } ``` + ### Usage Here is a possible program to test your function : ```go -import ( - "fmt" - "strconv" -) +package main + +import "fmt" func main() { fmt.Println(CountStars(5)) @@ -33,7 +33,6 @@ func main() { ``` And its output : - ```console $ go run . 1 star...2 stars...3 stars...4 stars...5 stars