Skip to content

Commit

Permalink
Add isogram exercise
Browse files Browse the repository at this point in the history
  • Loading branch information
keiravillekode committed Jun 28, 2024
1 parent ba40d7c commit 80dbe51
Show file tree
Hide file tree
Showing 13 changed files with 351 additions and 0 deletions.
7 changes: 7 additions & 0 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,13 @@
"practices": [],
"prerequisites": [],
"difficulty": 4
}, {
"slug": "isogram",
"name": "Isogram",
"uuid": "b292a9c5-7628-4bc4-b156-df2460eb44ae",
"practices": [],
"prerequisites": [],
"difficulty": 3
}, {
"slug": "pangram",
"name": "Pangram",
Expand Down
5 changes: 5 additions & 0 deletions exercises/practice/isogram/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Instruction append

## Reserved Memory

The buffer for the input string uses bytes 64-319 of linear memory.
14 changes: 14 additions & 0 deletions exercises/practice/isogram/.docs/instructions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Instructions

Determine if a word or phrase is an isogram.

An isogram (also known as a "non-pattern word") is a word or phrase without a repeating letter, however spaces and hyphens are allowed to appear multiple times.

Examples of isograms:

- lumberjacks
- background
- downstream
- six-year-old

The word _isograms_, however, is not an isogram, because the s repeats.
18 changes: 18 additions & 0 deletions exercises/practice/isogram/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"root": true,
"extends": "@exercism/eslint-config-javascript",
"env": {
"jest": true
},
"overrides": [
{
"files": [
"*.spec.js"
],
"excludedFiles": [
"custom.spec.js"
],
"extends": "@exercism/eslint-config-javascript/maintainers"
}
]
}
25 changes: 25 additions & 0 deletions exercises/practice/isogram/.meta/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"authors": [
"keiravillekode"
],
"files": {
"solution": [
"isogram.wat"
],
"test": [
"isogram.spec.js"
],
"example": [
".meta/proof.ci.wat"
]
},
"blurb": "Determine if a word or phrase is an isogram.",
"source": "Wikipedia",
"source_url": "https://en.wikipedia.org/wiki/Isogram",
"custom": {
"version.tests.compatibility": "jest-27",
"flag.tests.task-per-describe": false,
"flag.tests.may-run-long": false,
"flag.tests.includes-optional": false
}
}
55 changes: 55 additions & 0 deletions exercises/practice/isogram/.meta/proof.ci.wat
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
(module
(memory (export "mem") 1)

(func (export "isIsogram") (param $offset i32) (param $length i32) (result i32)
(local $index i32)
(local $stop i32)
(local $letter i32)
(local $bitset i32)
(local $updated i32)

(local.set $index (local.get $offset))
(local.set $stop
(i32.add
(local.get $offset)
(local.get $length)
)
)
(local.set $bitset (i32.const 0))

(loop $process
(if (i32.eq (local.get $index)
(local.get $stop)) (then
(return (i32.const 1))
))

(local.set $letter (i32.sub (i32.or (i32.load8_u (local.get $index))
(i32.const 32))
(i32.const 97)))

(local.set $index
(i32.add (local.get $index) (i32.const 1))
)

(if (i32.ge_u (local.get $letter)
(i32.const 26)) (then
(br $process)
))

(local.set $updated (i32.or (i32.shl (i32.const 1)
(local.get $letter))
(local.get $bitset)))

(if (i32.eq (local.get $updated)
(local.get $bitset)) (then
(return (i32.const 0))
))

(local.set $bitset (local.get $updated))

(br $process)
)

(unreachable)
)
)
45 changes: 45 additions & 0 deletions exercises/practice/isogram/.meta/tests.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# This is an auto-generated file. Regular comments will be removed when this
# file is regenerated. Regenerating will not touch any manually added keys,
# so comments can be added in a "comment" key.

[a0e97d2d-669e-47c7-8134-518a1e2c4555]
description = "empty string"

[9a001b50-f194-4143-bc29-2af5ec1ef652]
description = "isogram with only lower case characters"

[8ddb0ca3-276e-4f8b-89da-d95d5bae78a4]
description = "word with one duplicated character"

[6450b333-cbc2-4b24-a723-0b459b34fe18]
description = "word with one duplicated character from the end of the alphabet"

[a15ff557-dd04-4764-99e7-02cc1a385863]
description = "longest reported english isogram"

[f1a7f6c7-a42f-4915-91d7-35b2ea11c92e]
description = "word with duplicated character in mixed case"

[14a4f3c1-3b47-4695-b645-53d328298942]
description = "word with duplicated character in mixed case, lowercase first"

[423b850c-7090-4a8a-b057-97f1cadd7c42]
description = "hypothetical isogrammic word with hyphen"

[93dbeaa0-3c5a-45c2-8b25-428b8eacd4f2]
description = "hypothetical word with duplicated character following hyphen"

[36b30e5c-173f-49c6-a515-93a3e825553f]
description = "isogram with duplicated hyphen"

[cdabafa0-c9f4-4c1f-b142-689c6ee17d93]
description = "made-up name that is an isogram"

[5fc61048-d74e-48fd-bc34-abfc21552d4d]
description = "duplicated character in the middle"

[310ac53d-8932-47bc-bbb4-b2b94f25a83e]
description = "same first and last characters"

[0d0b8644-0a1e-4a31-a432-2b3ee270d847]
description = "word with duplicated character and with two hyphens"
1 change: 1 addition & 0 deletions exercises/practice/isogram/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
audit=false
21 changes: 21 additions & 0 deletions exercises/practice/isogram/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2021 Exercism

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
4 changes: 4 additions & 0 deletions exercises/practice/isogram/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export default {
presets: ["@exercism/babel-preset-javascript"],
plugins: [],
};
107 changes: 107 additions & 0 deletions exercises/practice/isogram/isogram.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
import { compileWat, WasmRunner } from "@exercism/wasm-lib";

let wasmModule;
let currentInstance;

function isIsogram(input = "") {
const inputBufferOffset = 64;
const inputBufferCapacity = 256;

const inputLengthEncoded = new TextEncoder().encode(input).length;
if (inputLengthEncoded > inputBufferCapacity) {
throw new Error(
`String is too large for buffer of size ${inputBufferCapacity} bytes`
);
}

currentInstance.set_mem_as_utf8(inputBufferOffset, inputLengthEncoded, input);

// Pass offset and length to WebAssembly function
return currentInstance.exports.isIsogram(
inputBufferOffset,
inputLengthEncoded
);
}

beforeAll(async () => {
try {
const watPath = new URL("./isogram.wat", import.meta.url);
const { buffer } = await compileWat(watPath);
wasmModule = await WebAssembly.compile(buffer);
} catch (err) {
console.log(`Error compiling *.wat: \n${err}`);
process.exit(1);
}
});

describe("Isogram()", () => {
beforeEach(async () => {
currentInstance = null;
if (!wasmModule) {
return Promise.reject();
}
try {
currentInstance = await new WasmRunner(wasmModule);
return Promise.resolve();
} catch (err) {
console.log(`Error instantiating WebAssembly module: ${err}`);
return Promise.reject();
}
});

test("empty_string", () => {
expect(isIsogram("")).toBe(1);
});

xtest("isogram_with_only_lower_case_characters", () => {
expect(isIsogram("isogram")).toBe(1);
});

xtest("word_with_one_duplicated_character", () => {
expect(isIsogram("eleven")).toBe(0);
});

xtest("word_with_one_duplicated_character_from_the_end_of_the_alphabet", () => {
expect(isIsogram("zzyzx")).toBe(0);
});

xtest("longest_reported_english_isogram", () => {
expect(isIsogram("subdermatoglyphic")).toBe(1);
});

xtest("word_with_duplicated_character_in_mixed_case", () => {
expect(isIsogram("Alphabet")).toBe(0);
});

xtest("word_with_duplicated_character_in_mixed_case_lowercase_first", () => {
expect(isIsogram("alphAbet")).toBe(0);
});

xtest("hypothetical_isogrammic_word_with_hyphen", () => {
expect(isIsogram("thumbscrew-japingly")).toBe(1);
});

xtest("hypothetical_word_with_duplicated_character_following_hyphen", () => {
expect(isIsogram("thumbscrew-jappingly")).toBe(0);
});

xtest("isogram_with_duplicated_hyphen", () => {
expect(isIsogram("six-year-old")).toBe(1);
});

xtest("made_up_name_that_is_an_isogram", () => {
expect(isIsogram("Emily Jung Schwartzkopf")).toBe(1);
});

xtest("duplicated_character_in_the_middle", () => {
expect(isIsogram("accentor")).toBe(0);
});

xtest("same_first_and_last_characters", () => {
expect(isIsogram("angola")).toBe(0);
});

xtest("word_with_duplicated_character_and_with_two_hyphens", () => {
expect(isIsogram("up-to-date")).toBe(0);
});
});
15 changes: 15 additions & 0 deletions exercises/practice/isogram/isogram.wat
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
(module
(memory (export "mem") 1)

;;
;; Determine if a word or phrase is an isogram.
;;
;; @param {i32} offset - offset of string in linear memory
;; @param {i32} length - length of string in linear memory
;;
;; @returns {i32} 1 if pangram, 0 otherwise
;;
(func (export "isIsogram") (param $offset i32) (param $length i32) (result i32)
(return (i32.const 1))
)
)
34 changes: 34 additions & 0 deletions exercises/practice/isogram/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"name": "@exercism/wasm-isogram",
"description": "Exercism exercises in WebAssembly.",
"type": "module",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/exercism/wasm",
"directory": "exercises/practice/isogram"
},
"jest": {
"maxWorkers": 1
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@exercism/babel-preset-javascript": "^0.2.1",
"@exercism/eslint-config-javascript": "^0.6.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"babel-jest": "^29.4.2",
"core-js": "^3.27.2",
"eslint": "^8.34.0",
"jest": "^29.4.2"
},
"dependencies": {
"@exercism/wasm-lib": "^0.1.0"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js ./*",
"watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch ./*",
"lint": "eslint ."
}
}

0 comments on commit 80dbe51

Please sign in to comment.