From fb3636dff25fb1e1e9045d36b53c8c295c4a3d02 Mon Sep 17 00:00:00 2001 From: zainabdnaya Date: Tue, 14 Jun 2022 15:16:00 +0100 Subject: [PATCH] CountStars subject --- subjects/countstars/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/subjects/countstars/README.md b/subjects/countstars/README.md index 44711379..7ddc48b1 100644 --- a/subjects/countstars/README.md +++ b/subjects/countstars/README.md @@ -6,7 +6,7 @@ Write a function named `CountStar` that makes u fall asleep by counting stars, i - No need to manage overflow. ```go -func CountStar(num int) string { +func CountStars(num int) string { } ``` @@ -17,9 +17,9 @@ import ( ) func main() { - fmt.Println(CountStar(5)) - fmt.Println(CountStar(4)) - fmt.Println(CountStar(-1)) + fmt.Println(CountStars(5)) + fmt.Println(CountStars(4)) + fmt.Println(CountStars(-1)) } ```