Skip to content

Commit

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

* Fix file name
  • Loading branch information
ErikSchierboom authored Feb 15, 2024
1 parent 2a138e9 commit 8f8d4f3
Show file tree
Hide file tree
Showing 14 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
"prerequisites": [],
"difficulty": 2
}, {
"slug": "pop-count",
"slug": "eliuds-eggs",
"name": "Eliud's Eggs",
"uuid": "233fde6a-79d9-4d90-8f94-2a0519352a5c",
"practices": [],
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
],
"files": {
"solution": [
"pop-count.wat"
"eliuds-eggs.wat"
],
"test": [
"pop-count.spec.js"
"eliuds-eggs.spec.js"
],
"example": [
".meta/proof.ci.wat"
Expand All @@ -16,9 +16,9 @@
"package.json"
]
},
"blurb": "Help Eluid count the number of eggs in her chicken coop by counting the number of 1 bits in a binary representation.",
"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",
"custom": {
"version.tests.compatibility": "jest-27",
"flag.tests.task-per-describe": false,
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ let currentInstance;

beforeAll(async () => {
try {
const watPath = new URL("./pop-count.wat", import.meta.url);
const watPath = new URL("./eliuds-eggs.wat", import.meta.url);
const { buffer } = await compileWat(watPath);
wasmModule = await WebAssembly.compile(buffer);
} catch (err) {
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@exercism/wasm-pop-count",
"name": "@exercism/wasm-eliuds-eggs",
"description": "Exercism exercises in WebAssembly.",
"type": "module",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/exercism/wasm",
"directory": "exercises/practice/pop-count"
"directory": "exercises/practice/eliuds-eggs"
},
"jest": {
"maxWorkers": 1
Expand Down

0 comments on commit 8f8d4f3

Please sign in to comment.