-
-
Notifications
You must be signed in to change notification settings - Fork 546
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename proposed exercise Eliud's Eggs to Pop Count
- Loading branch information
1 parent
ddb707f
commit a6cafdd
Showing
5 changed files
with
25 additions
and
27 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
27 changes: 9 additions & 18 deletions
27
exercises/eliuds-eggs/canonical-data.json → exercises/pop-count/canonical-data.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Instructions | ||
|
||
Your task is to count the number of 1 bits in the binary representation of a number. | ||
|
||
## Restrictions | ||
|
||
Keep your hands off that bit-count functionality provided by your standard library! | ||
Solve this one yourself using other basic tools instead. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
title = "Pop Count" | ||
blurb = "Count the 1 bits in a number" | ||
source = "Christian Willner, Eric Willigers" | ||
source_url = "https://forum.exercism.org/t/new-exercise-suggestion-pop-count/7632/5" |