From 11b0dd1e5516b3950b4badc3651a7efdc9865e3d Mon Sep 17 00:00:00 2001 From: Hamza elkhatri <40549481+Hamzaelkhatri@users.noreply.github.com> Date: Tue, 5 Jul 2022 17:07:33 +0100 Subject: [PATCH] Update README.md --- subjects/isthesquareachild/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subjects/isthesquareachild/README.md b/subjects/isthesquareachild/README.md index 7e6dee3d..80599e0b 100644 --- a/subjects/isthesquareachild/README.md +++ b/subjects/isthesquareachild/README.md @@ -30,6 +30,7 @@ func main(){ fmt.Println(IsTheSquareAChild(6, 36)) fmt.Println(IsTheSquareAChild(-10, 100)) fmt.Println(IsTheSquareAChild(100,10)) + fmt.Println(IsTheSquareAChild(8, -64)) } ``` @@ -44,5 +45,6 @@ false true false false +false ```