Skip to content

Commit 68ef0d4

Browse files
authored
Add House practice exercise (#293)
1 parent 8e07b6e commit 68ef0d4

File tree

8 files changed

+1063
-0
lines changed

8 files changed

+1063
-0
lines changed

config.json

+8
Original file line numberDiff line numberDiff line change
@@ -689,6 +689,14 @@
689689
"practices": [],
690690
"prerequisites": [],
691691
"difficulty": 7
692+
},
693+
{
694+
"slug": "house",
695+
"name": "House",
696+
"uuid": "7010489b-7c7b-4af9-b536-14143f5ac02b",
697+
"practices": [],
698+
"prerequisites": [],
699+
"difficulty": 2
692700
}
693701
],
694702
"foregone": [
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
# Instructions
2+
3+
Recite the nursery rhyme 'This is the House that Jack Built'.
4+
5+
> [The] process of placing a phrase of clause within another phrase of clause is called embedding.
6+
> 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.
7+
> Furthermore, embedding also allows us to construct an infinitely long structure, in theory anyway.
8+
9+
- [papyr.com][papyr]
10+
11+
The nursery rhyme reads as follows:
12+
13+
```text
14+
This is the house that Jack built.
15+
16+
This is the malt
17+
that lay in the house that Jack built.
18+
19+
This is the rat
20+
that ate the malt
21+
that lay in the house that Jack built.
22+
23+
This is the cat
24+
that killed the rat
25+
that ate the malt
26+
that lay in the house that Jack built.
27+
28+
This is the dog
29+
that worried the cat
30+
that killed the rat
31+
that ate the malt
32+
that lay in the house that Jack built.
33+
34+
This is the cow with the crumpled horn
35+
that tossed the dog
36+
that worried the cat
37+
that killed the rat
38+
that ate the malt
39+
that lay in the house that Jack built.
40+
41+
This is the maiden all forlorn
42+
that milked the cow with the crumpled horn
43+
that tossed the dog
44+
that worried the cat
45+
that killed the rat
46+
that ate the malt
47+
that lay in the house that Jack built.
48+
49+
This is the man all tattered and torn
50+
that kissed the maiden all forlorn
51+
that milked the cow with the crumpled horn
52+
that tossed the dog
53+
that worried the cat
54+
that killed the rat
55+
that ate the malt
56+
that lay in the house that Jack built.
57+
58+
This is the priest all shaven and shorn
59+
that married the man all tattered and torn
60+
that kissed the maiden all forlorn
61+
that milked the cow with the crumpled horn
62+
that tossed the dog
63+
that worried the cat
64+
that killed the rat
65+
that ate the malt
66+
that lay in the house that Jack built.
67+
68+
This is the rooster that crowed in the morn
69+
that woke the priest all shaven and shorn
70+
that married the man all tattered and torn
71+
that kissed the maiden all forlorn
72+
that milked the cow with the crumpled horn
73+
that tossed the dog
74+
that worried the cat
75+
that killed the rat
76+
that ate the malt
77+
that lay in the house that Jack built.
78+
79+
This is the farmer sowing his corn
80+
that kept the rooster that crowed in the morn
81+
that woke the priest all shaven and shorn
82+
that married the man all tattered and torn
83+
that kissed the maiden all forlorn
84+
that milked the cow with the crumpled horn
85+
that tossed the dog
86+
that worried the cat
87+
that killed the rat
88+
that ate the malt
89+
that lay in the house that Jack built.
90+
91+
This is the horse and the hound and the horn
92+
that belonged to the farmer sowing his corn
93+
that kept the rooster that crowed in the morn
94+
that woke the priest all shaven and shorn
95+
that married the man all tattered and torn
96+
that kissed the maiden all forlorn
97+
that milked the cow with the crumpled horn
98+
that tossed the dog
99+
that worried the cat
100+
that killed the rat
101+
that ate the malt
102+
that lay in the house that Jack built.
103+
```
104+
105+
[papyr]: https://papyr.com/hypertextbooks/grammar/ph_noun.htm
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"authors": [
3+
"rabestro"
4+
],
5+
"files": {
6+
"solution": [
7+
"house.awk"
8+
],
9+
"test": [
10+
"test-house.bats"
11+
],
12+
"example": [
13+
".meta/example.awk"
14+
]
15+
},
16+
"blurb": "Output the nursery rhyme 'This is the House that Jack Built'.",
17+
"source": "British nursery rhyme",
18+
"source_url": "https://en.wikipedia.org/wiki/This_Is_The_House_That_Jack_Built"
19+
}
+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#!/usr/bin/awk -f
2+
3+
# These variables are initialized on the command line (using '-v'):
4+
# - start, end
5+
6+
BEGIN {
7+
if (start < 1 || end > 12 || start > end) {
8+
print "Error: invalid range. Start must be >= 1, end <= 12, and start <= end."
9+
exit 1
10+
}
11+
12+
Phrase[0] = "the house that Jack built"
13+
Phrase[1] = "the malt that lay in"
14+
Phrase[2] = "the rat that ate"
15+
Phrase[3] = "the cat that killed"
16+
Phrase[4] = "the dog that worried"
17+
Phrase[5] = "the cow with the crumpled horn that tossed"
18+
Phrase[6] = "the maiden all forlorn that milked"
19+
Phrase[7] = "the man all tattered and torn that kissed"
20+
Phrase[8] = "the priest all shaven and shorn that married"
21+
Phrase[9] = "the rooster that crowed in the morn that woke"
22+
Phrase[10] = "the farmer sowing his corn that kept"
23+
Phrase[11] = "the horse and the hound and the horn that belonged to"
24+
25+
for (v = start; v <= end; v++)
26+
print single_verse(v)
27+
}
28+
29+
function single_verse(i, out) {
30+
while (i--) out = out Phrase[i] (i ? " " : ".")
31+
return "This is " out
32+
}
+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# This is an auto-generated file.
2+
#
3+
# Regenerating this file via `configlet sync` will:
4+
# - Recreate every `description` key/value pair
5+
# - Recreate every `reimplements` key/value pair, where they exist in problem-specifications
6+
# - Remove any `include = true` key/value pair (an omitted `include` key implies inclusion)
7+
# - Preserve any other key/value pair
8+
#
9+
# As user-added comments (using the # character) will be removed when this file
10+
# is regenerated, comments can be added via a `comment` key.
11+
12+
[28a540ff-f765-4348-9d57-ae33f25f41f2]
13+
description = "verse one - the house that jack built"
14+
include = false
15+
16+
[ebc825ac-6e2b-4a5e-9afd-95732191c8da]
17+
description = "verse two - the malt that lay"
18+
19+
[1ed8bb0f-edb8-4bd1-b6d4-b64754fe4a60]
20+
description = "verse three - the rat that ate"
21+
22+
[64b0954e-8b7d-4d14-aad0-d3f6ce297a30]
23+
description = "verse four - the cat that killed"
24+
include = false
25+
26+
[1e8d56bc-fe31-424d-9084-61e6111d2c82]
27+
description = "verse five - the dog that worried"
28+
include = false
29+
30+
[6312dc6f-ab0a-40c9-8a55-8d4e582beac4]
31+
description = "verse six - the cow with the crumpled horn"
32+
33+
[68f76d18-6e19-4692-819c-5ff6a7f92feb]
34+
description = "verse seven - the maiden all forlorn"
35+
36+
[73872564-2004-4071-b51d-2e4326096747]
37+
description = "verse eight - the man all tattered and torn"
38+
39+
[0d53d743-66cb-4351-a173-82702f3338c9]
40+
description = "verse nine - the priest all shaven and shorn"
41+
42+
[452f24dc-8fd7-4a82-be1a-3b4839cfeb41]
43+
description = "verse 10 - the rooster that crowed in the morn"
44+
45+
[97176f20-2dd3-4646-ac72-cffced91ea26]
46+
description = "verse 11 - the farmer sowing his corn"
47+
48+
[09824c29-6aad-4dcd-ac98-f61374a6a8b7]
49+
description = "verse 12 - the horse and the hound and the horn"
50+
51+
[d2b980d3-7851-49e1-97ab-1524515ec200]
52+
description = "multiple verses"
53+
54+
[0311d1d0-e085-4f23-8ae7-92406fb3e803]
55+
description = "full rhyme"

0 commit comments

Comments
 (0)