From e460bd529f7466c3b75f185c636b3efe26e2c3ad Mon Sep 17 00:00:00 2001 From: Andrew Pam Date: Fri, 8 Nov 2024 03:40:52 +1100 Subject: [PATCH] Clarify requirements --- exercises/square-root/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/square-root/instructions.md b/exercises/square-root/instructions.md index b5cf4c105..d258b8687 100644 --- a/exercises/square-root/instructions.md +++ b/exercises/square-root/instructions.md @@ -4,7 +4,7 @@ Your task is to calculate the square root of a given number. - Try to avoid using the pre-existing math libraries of your language. - As input you'll be given a positive whole number, i.e. 1, 2, 3, 4… -- You also only need to return a positive whole number. +- You are only required to handle cases where the result is a positive whole number. Some potential approaches: