From 6ce6c9f28a044c04507febef006e4eca9c5cb25b Mon Sep 17 00:00:00 2001 From: zainabdnaya Date: Thu, 30 Jun 2022 22:05:31 +0100 Subject: [PATCH] count starst correction --- subjects/countstars/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subjects/countstars/README.md b/subjects/countstars/README.md index ebd2d58a..755268b9 100644 --- a/subjects/countstars/README.md +++ b/subjects/countstars/README.md @@ -5,6 +5,8 @@ Write a function called CountStars that counts the stars up to a number given as - 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