Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add house exercise #223

Merged
merged 1 commit into from
Nov 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,14 @@
"prerequisites": [],
"difficulty": 4
},
{
"slug": "house",
"name": "House",
"uuid": "84b8a12c-c79e-4358-810f-be234ef88a8d",
"practices": [],
"prerequisites": [],
"difficulty": 4
},
{
"slug": "nth-prime",
"name": "Nth Prime",
Expand Down
105 changes: 105 additions & 0 deletions exercises/practice/house/.docs/instructions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
# Instructions

Recite the nursery rhyme 'This is the House that Jack Built'.

> [The] process of placing a phrase of clause within another phrase of clause is called embedding.
> It is through the processes of recursion and embedding that we are able to take a finite number of forms (words and phrases) and construct an infinite number of expressions.
> Furthermore, embedding also allows us to construct an infinitely long structure, in theory anyway.

- [papyr.com][papyr]

The nursery rhyme reads as follows:

```text
This is the house that Jack built.

This is the malt
that lay in the house that Jack built.

This is the rat
that ate the malt
that lay in the house that Jack built.

This is the cat
that killed the rat
that ate the malt
that lay in the house that Jack built.

This is the dog
that worried the cat
that killed the rat
that ate the malt
that lay in the house that Jack built.

This is the cow with the crumpled horn
that tossed the dog
that worried the cat
that killed the rat
that ate the malt
that lay in the house that Jack built.

This is the maiden all forlorn
that milked the cow with the crumpled horn
that tossed the dog
that worried the cat
that killed the rat
that ate the malt
that lay in the house that Jack built.

This is the man all tattered and torn
that kissed the maiden all forlorn
that milked the cow with the crumpled horn
that tossed the dog
that worried the cat
that killed the rat
that ate the malt
that lay in the house that Jack built.

This is the priest all shaven and shorn
that married the man all tattered and torn
that kissed the maiden all forlorn
that milked the cow with the crumpled horn
that tossed the dog
that worried the cat
that killed the rat
that ate the malt
that lay in the house that Jack built.

This is the rooster that crowed in the morn
that woke the priest all shaven and shorn
that married the man all tattered and torn
that kissed the maiden all forlorn
that milked the cow with the crumpled horn
that tossed the dog
that worried the cat
that killed the rat
that ate the malt
that lay in the house that Jack built.

This is the farmer sowing his corn
that kept the rooster that crowed in the morn
that woke the priest all shaven and shorn
that married the man all tattered and torn
that kissed the maiden all forlorn
that milked the cow with the crumpled horn
that tossed the dog
that worried the cat
that killed the rat
that ate the malt
that lay in the house that Jack built.

This is the horse and the hound and the horn
that belonged to the farmer sowing his corn
that kept the rooster that crowed in the morn
that woke the priest all shaven and shorn
that married the man all tattered and torn
that kissed the maiden all forlorn
that milked the cow with the crumpled horn
that tossed the dog
that worried the cat
that killed the rat
that ate the malt
that lay in the house that Jack built.
```

[papyr]: https://papyr.com/hypertextbooks/grammar/ph_noun.htm
19 changes: 19 additions & 0 deletions exercises/practice/house/.meta/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"authors": [
"keiravillekode"
],
"files": {
"solution": [
"house.wren"
],
"test": [
"house.spec.wren"
],
"example": [
".meta/proof.ci.wren"
]
},
"blurb": "Output the nursery rhyme 'This is the House that Jack Built'.",
"source": "British nursery rhyme",
"source_url": "https://en.wikipedia.org/wiki/This_Is_The_House_That_Jack_Built"
}
13 changes: 13 additions & 0 deletions exercises/practice/house/.meta/proof.ci.wren
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
class House {
static recite(startVerse, endVerse) {
var text = "This is the horse and the hound and the horn that belonged to the farmer sowing his corn that kept the rooster that crowed in the morn that woke the priest all shaven and shorn that married the man all tattered and torn that kissed the maiden all forlorn that milked the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built."
var table = [null, 388, 367, 350, 330, 309, 266, 231, 189, 144, 98, 61, 7]

var result = []
for (verse in startVerse..endVerse) {
result.add("This is" + text[table[verse]..-1])
}

return result
}
}
52 changes: 52 additions & 0 deletions exercises/practice/house/.meta/tests.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# This is an auto-generated file.
#
# Regenerating this file via `configlet sync` will:
# - Recreate every `description` key/value pair
# - Recreate every `reimplements` key/value pair, where they exist in problem-specifications
# - Remove any `include = true` key/value pair (an omitted `include` key implies inclusion)
# - Preserve any other key/value pair
#
# As user-added comments (using the # character) will be removed when this file
# is regenerated, comments can be added via a `comment` key.

[28a540ff-f765-4348-9d57-ae33f25f41f2]
description = "verse one - the house that jack built"

[ebc825ac-6e2b-4a5e-9afd-95732191c8da]
description = "verse two - the malt that lay"

[1ed8bb0f-edb8-4bd1-b6d4-b64754fe4a60]
description = "verse three - the rat that ate"

[64b0954e-8b7d-4d14-aad0-d3f6ce297a30]
description = "verse four - the cat that killed"

[1e8d56bc-fe31-424d-9084-61e6111d2c82]
description = "verse five - the dog that worried"

[6312dc6f-ab0a-40c9-8a55-8d4e582beac4]
description = "verse six - the cow with the crumpled horn"

[68f76d18-6e19-4692-819c-5ff6a7f92feb]
description = "verse seven - the maiden all forlorn"

[73872564-2004-4071-b51d-2e4326096747]
description = "verse eight - the man all tattered and torn"

[0d53d743-66cb-4351-a173-82702f3338c9]
description = "verse nine - the priest all shaven and shorn"

[452f24dc-8fd7-4a82-be1a-3b4839cfeb41]
description = "verse 10 - the rooster that crowed in the morn"

[97176f20-2dd3-4646-ac72-cffced91ea26]
description = "verse 11 - the farmer sowing his corn"

[09824c29-6aad-4dcd-ac98-f61374a6a8b7]
description = "verse 12 - the horse and the hound and the horn"

[d2b980d3-7851-49e1-97ab-1524515ec200]
description = "multiple verses"

[0311d1d0-e085-4f23-8ae7-92406fb3e803]
description = "full rhyme"
21 changes: 21 additions & 0 deletions exercises/practice/house/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 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.
117 changes: 117 additions & 0 deletions exercises/practice/house/house.spec.wren
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
import "./house" for House
import "wren-testie/testie" for Testie, Expect

Testie.test("House") { |do, skip|
do.test("verse one - the house that jack built") {
var expected = [
"This is the house that Jack built.",
]
Expect.value(House.recite(1, 1)).toEqual(expected)
}

skip.test("verse two - the malt that lay") {
var expected = [
"This is the malt that lay in the house that Jack built.",
]
Expect.value(House.recite(2, 2)).toEqual(expected)
}

skip.test("verse three - the rat that ate") {
var expected = [
"This is the rat that ate the malt that lay in the house that Jack built.",
]
Expect.value(House.recite(3, 3)).toEqual(expected)
}

skip.test("verse four - the cat that killed") {
var expected = [
"This is the cat that killed the rat that ate the malt that lay in the house that Jack built.",
]
Expect.value(House.recite(4, 4)).toEqual(expected)
}

skip.test("verse five - the dog that worried") {
var expected = [
"This is the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
]
Expect.value(House.recite(5, 5)).toEqual(expected)
}

skip.test("verse six - the cow with the crumpled horn") {
var expected = [
"This is the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
]
Expect.value(House.recite(6, 6)).toEqual(expected)
}

skip.test("verse seven - the maiden all forlorn") {
var expected = [
"This is the maiden all forlorn that milked the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
]
Expect.value(House.recite(7, 7)).toEqual(expected)
}

skip.test("verse eight - the man all tattered and torn") {
var expected = [
"This is the man all tattered and torn that kissed the maiden all forlorn that milked the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
]
Expect.value(House.recite(8, 8)).toEqual(expected)
}

skip.test("verse nine - the priest all shaven and shorn") {
var expected = [
"This is the priest all shaven and shorn that married the man all tattered and torn that kissed the maiden all forlorn that milked the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
]
Expect.value(House.recite(9, 9)).toEqual(expected)
}

skip.test("verse 10 - the rooster that crowed in the morn") {
var expected = [
"This is the rooster that crowed in the morn that woke the priest all shaven and shorn that married the man all tattered and torn that kissed the maiden all forlorn that milked the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
]
Expect.value(House.recite(10, 10)).toEqual(expected)
}

skip.test("verse 11 - the farmer sowing his corn") {
var expected = [
"This is the farmer sowing his corn that kept the rooster that crowed in the morn that woke the priest all shaven and shorn that married the man all tattered and torn that kissed the maiden all forlorn that milked the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
]
Expect.value(House.recite(11, 11)).toEqual(expected)
}

skip.test("verse 12 - the horse and the hound and the horn") {
var expected = [
"This is the horse and the hound and the horn that belonged to the farmer sowing his corn that kept the rooster that crowed in the morn that woke the priest all shaven and shorn that married the man all tattered and torn that kissed the maiden all forlorn that milked the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
]
Expect.value(House.recite(12, 12)).toEqual(expected)
}

skip.test("multiple verses") {
var expected = [
"This is the cat that killed the rat that ate the malt that lay in the house that Jack built.",
"This is the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
"This is the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
"This is the maiden all forlorn that milked the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
"This is the man all tattered and torn that kissed the maiden all forlorn that milked the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
]
Expect.value(House.recite(4, 8)).toEqual(expected)
}

skip.test("full rhyme") {
var expected = [
"This is the house that Jack built.",
"This is the malt that lay in the house that Jack built.",
"This is the rat that ate the malt that lay in the house that Jack built.",
"This is the cat that killed the rat that ate the malt that lay in the house that Jack built.",
"This is the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
"This is the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
"This is the maiden all forlorn that milked the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
"This is the man all tattered and torn that kissed the maiden all forlorn that milked the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
"This is the priest all shaven and shorn that married the man all tattered and torn that kissed the maiden all forlorn that milked the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
"This is the rooster that crowed in the morn that woke the priest all shaven and shorn that married the man all tattered and torn that kissed the maiden all forlorn that milked the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
"This is the farmer sowing his corn that kept the rooster that crowed in the morn that woke the priest all shaven and shorn that married the man all tattered and torn that kissed the maiden all forlorn that milked the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
"This is the horse and the hound and the horn that belonged to the farmer sowing his corn that kept the rooster that crowed in the morn that woke the priest all shaven and shorn that married the man all tattered and torn that kissed the maiden all forlorn that milked the cow with the crumpled horn that tossed the dog that worried the cat that killed the rat that ate the malt that lay in the house that Jack built.",
]
Expect.value(House.recite(1, 12)).toEqual(expected)
}
}
5 changes: 5 additions & 0 deletions exercises/practice/house/house.wren
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class House {
static recite(startVerse, endVerse) {
Fiber.abort("Remove this statement and implement this function")
}
}
14 changes: 14 additions & 0 deletions exercises/practice/house/package.wren
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import "wren-package" for WrenPackage, Dependency
import "os" for Process

class Package is WrenPackage {
construct new() {}
name { "exercism/house" }
dependencies {
return [
Dependency.new("wren-testie", "0.3.0", "https://github.com/joshgoebel/wren-testie.git")
]
}
}

Package.new().default()