From 5349c4126ed5b0f2075e04c1ec78f2cbe9fa0ca0 Mon Sep 17 00:00:00 2001 From: Anastasios Chatzialexiou <16361161+tasxatzial@users.noreply.github.com> Date: Tue, 12 Nov 2024 23:46:45 +0200 Subject: [PATCH] eliuds-eggs: Reword exercise restrictions --- exercises/eliuds-eggs/instructions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/eliuds-eggs/instructions.md b/exercises/eliuds-eggs/instructions.md index b0c2df593c..aa8f1b6f05 100644 --- a/exercises/eliuds-eggs/instructions.md +++ b/exercises/eliuds-eggs/instructions.md @@ -4,5 +4,5 @@ Your task is to count the number of 1 bits in the binary representation of a num ## Restrictions -Keep your hands off that bit-count functionality provided by your standard library! -Solve this one yourself using other basic tools instead. +Avoid using any library functions that count the number of bits in a number. +Instead, try solving this yourself using more basic tools.