Skip to content

Commit

Permalink
pop-count: rename to eliuds-eggs (#1426)
Browse files Browse the repository at this point in the history
* Rename the `pop-count` exercise to `eliuds-eggs`.

* Update file name
  • Loading branch information
ErikSchierboom authored Feb 15, 2024
1 parent fb4604f commit b4d48b5
Show file tree
Hide file tree
Showing 16 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,7 @@
"topics": ["classes", "conditionals"]
},
{
"slug": "pop-count",
"slug": "eliuds-eggs",
"name": "Eliud's Eggs",
"uuid": "2cdf947c-34ed-4ecf-92dd-4c4e6c21f9f3",
"practices": [],
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
],
"files": {
"solution": [
"pop-count.ts"
"eliuds-eggs.ts"
],
"test": [
"pop-count.test.ts"
"eliuds-eggs.test.ts"
],
"example": [
".meta/proof.ci.ts"
]
},
"blurb": "Help Eliud count the number of eggs in her chicken coop by counting the number of 1 bits in a binary representation.",
"source": "Christian Willner, Eric Willigers",
"source_url": "https://forum.exercism.org/t/new-exercise-suggestion-pop-count/7632/5"
"source_url": "https://forum.exercism.org/t/new-exercise-suggestion-eliuds-eggs/7632/5"
}
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { eggCount } from './pop-count'
import { eggCount } from './eliuds-eggs'

describe('PopCount', () => {
describe('EliudsEggs', () => {
it('0 eggs', () => {
const expected = 0
const actual = eggCount(0)
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@exercism/typescript-pop-count",
"name": "@exercism/typescript-eliuds-eggs",
"version": "1.0.0",
"description": "Exercism exercises in Typescript.",
"private": true,
Expand Down
File renamed without changes.

0 comments on commit b4d48b5

Please sign in to comment.