Skip to content

Commit e4afe2b

Browse files
authored
Sync problem-specifications tests (#330)
* Sync `bob` tests * Sync `protein-translation` tests * Sync `pig-latin` tests * Sync `flatten-array` tests * Sync `reverse-string` tests * Sync `anagram` tests * Sync `custom-set` tests * Sync `word-count` tests * update `word-count` toml * Sync remaining docs and metadata
1 parent 81027a6 commit e4afe2b

File tree

26 files changed

+270
-86
lines changed

26 files changed

+270
-86
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
# Instructions
22

3-
Your task is to, given a target word and a set of candidate words, to find the subset of the candidates that are anagrams of the target.
3+
Given a target word and one or more candidate words, your task is to find the candidates that are anagrams of the target.
44

55
An anagram is a rearrangement of letters to form a new word: for example `"owns"` is an anagram of `"snow"`.
66
A word is _not_ its own anagram: for example, `"stop"` is not an anagram of `"stop"`.
77

8-
The target and candidates are words of one or more ASCII alphabetic characters (`A`-`Z` and `a`-`z`).
9-
Lowercase and uppercase characters are equivalent: for example, `"PoTS"` is an anagram of `"sTOp"`, but `StoP` is not an anagram of `sTOp`.
10-
The anagram set is the subset of the candidate set that are anagrams of the target (in any order).
11-
Words in the anagram set should have the same letter case as in the candidate set.
8+
The target word and candidate words are made up of one or more ASCII alphabetic characters (`A`-`Z` and `a`-`z`).
9+
Lowercase and uppercase characters are equivalent: for example, `"PoTS"` is an anagram of `"sTOp"`, but `"StoP"` is not an anagram of `"sTOp"`.
10+
The words you need to find should be taken from the candidate words, using the same letter case.
1211

13-
Given the target `"stone"` and candidates `"stone"`, `"tones"`, `"banana"`, `"tons"`, `"notes"`, `"Seton"`, the anagram set is `"tones"`, `"notes"`, `"Seton"`.
12+
Given the target `"stone"` and the candidate words `"stone"`, `"tones"`, `"banana"`, `"tons"`, `"notes"`, and `"Seton"`, the anagram words you need to find are `"tones"`, `"notes"`, and `"Seton"`.

exercises/practice/anagram/.meta/tests.toml

+7-1
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ include = false
4949

5050
[630abb71-a94e-4715-8395-179ec1df9f91]
5151
description = "does not detect an anagram if the original word is repeated"
52-
reimplements = "7cc195ad-e3c7-44ee-9fd2-d3c344806a2c"
5352
include = false
53+
reimplements = "7cc195ad-e3c7-44ee-9fd2-d3c344806a2c"
5454

5555
[9878a1c9-d6ea-4235-ae51-3ea2befd6842]
5656
description = "anagrams must use all letters exactly once"
@@ -78,3 +78,9 @@ include = false
7878
[33d3f67e-fbb9-49d3-a90e-0beb00861da7]
7979
description = "words other than themselves can be anagrams"
8080
reimplements = "a0705568-628c-4b55-9798-82e4acde51ca"
81+
82+
[a6854f66-eec1-4afd-a137-62ef2870c051]
83+
description = "handles case of greek letters"
84+
85+
[fd3509e5-e3ba-409d-ac3d-a9ac84d13296]
86+
description = "different characters may have the same bytes"

exercises/practice/anagram/anagram.vader

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ Execute (no matches):
55
let g:expected = []
66
AssertEqual g:expected, FindAnagrams(g:candidates, g:subject)
77

8+
Execute (detects two anagrams):
9+
let g:candidates = ['stream', 'pigeon', 'maters']
10+
let g:subject = "master"
11+
let g:expected = ['stream', 'maters']
12+
AssertEqual g:expected, FindAnagrams(g:candidates, g:subject)
13+
814
Execute (detects two anagrams):
915
let g:candidates = ['lemons', 'cherry', 'melons']
1016
let g:subject = "solemn"
@@ -59,12 +65,6 @@ Execute (detects anagrams using case-insensitive possible matches):
5965
let g:expected = ['Carthorse']
6066
AssertEqual g:expected, FindAnagrams(g:candidates, g:subject)
6167

62-
Execute (does not detect an anagram if the original word is repeated):
63-
let g:candidates = ['goGoGO']
64-
let g:subject = "go"
65-
let g:expected = []
66-
AssertEqual g:expected, FindAnagrams(g:candidates, g:subject)
67-
6868
Execute (anagrams must use all letters exactly once):
6969
let g:candidates = ['patter']
7070
let g:subject = "tapper"

exercises/practice/bob/.meta/tests.toml

+5
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ description = "alternate silence"
7171

7272
[66953780-165b-4e7e-8ce3-4bcb80b6385a]
7373
description = "multiple line question"
74+
include = false
7475

7576
[5371ef75-d9ea-4103-bcfa-2da973ddec1b]
7677
description = "starting with whitespace"
@@ -83,3 +84,7 @@ description = "other whitespace"
8384

8485
[12983553-8601-46a8-92fa-fcaa3bc4a2a0]
8586
description = "non-question ending with whitespace"
87+
88+
[2c7278ac-f955-4eb4-bf8f-e33eb4116a15]
89+
description = "multiple line question"
90+
reimplements = "66953780-165b-4e7e-8ce3-4bcb80b6385a"

exercises/practice/bob/bob.vader

+5-4
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,6 @@ Execute (alternate silence):
9999
let g:expected = "Fine. Be that way!"
100100
AssertEqual g:expected, Response(g:heyBob)
101101

102-
Execute (multiple line question):
103-
let g:heyBob = "\nDoes this cryogenic chamber make me look fat?\nNo."
104-
let g:expected = "Whatever."
105-
AssertEqual g:expected, Response(g:heyBob)
106102

107103
Execute (starting with whitespace):
108104
let g:heyBob = " hmmmmmmm..."
@@ -123,3 +119,8 @@ Execute (non-question ending with whitespace):
123119
let g:heyBob = "This is a statement ending with whitespace "
124120
let g:expected = "Whatever."
125121
AssertEqual g:expected, Response(g:heyBob)
122+
123+
Execute (multiple line question):
124+
let g:heyBob = "\nDoes this cryogenic chamber make\n me look fat?"
125+
let g:expected = "Sure."
126+
AssertEqual g:expected, Response(g:heyBob)

exercises/practice/custom-set/.meta/tests.toml

+3
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ description = "Difference (or Complement) of a set is a set of all elements that
114114
[c5ac673e-d707-4db5-8d69-7082c3a5437e]
115115
description = "Difference (or Complement) of a set is a set of all elements that are only in the first set -> difference of two non-empty sets is a set of elements that are only in the first set"
116116

117+
[20d0a38f-7bb7-4c4a-ac15-90c7392ecf2b]
118+
description = "Difference (or Complement) of a set is a set of all elements that are only in the first set -> difference removes all duplicates in the first set"
119+
117120
[c45aed16-5494-455a-9033-5d4c93589dc6]
118121
description = "Union returns a set of all elements in either set -> union of empty sets is an empty set"
119122

exercises/practice/custom-set/custom_set.vader

+6
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,12 @@ Execute (difference of two non-empty sets is a set of elements that are only in
184184
let g:expected = Set([1, 3])
185185
AssertEqual g:expected, g:set1.Difference(g:set2)
186186

187+
Execute (difference removes all duplicates in the first set):
188+
let g:set1 = Set([1, 1])
189+
let g:set2 = Set([1])
190+
let g:expected = Set([])
191+
AssertEqual g:expected, g:set1.Difference(g:set2)
192+
187193
Execute (union of empty sets is an empty set):
188194
let g:set1 = Set([])
189195
let g:set2 = Set([])
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
# Instructions
22

3-
Take a nested list and return a single flattened list with all values except nil/null.
3+
Take a nested array of any depth and return a fully flattened array.
44

5-
The challenge is to take an arbitrarily-deep nested list-like structure and produce a flattened structure without any nil/null values.
5+
Note that some language tracks may include null-like values in the input array, and the way these values are represented varies by track.
6+
Such values should be excluded from the flattened array.
67

7-
For example:
8+
Additionally, the input may be of a different data type and contain different types, depending on the track.
89

9-
input: [1,[2,3,null,4],[null],5]
10+
Check the test suite for details.
1011

11-
output: [1,2,3,4,5]
12+
## Example
13+
14+
input: `[1, [2, 6, null], [[null, [4]], 5]]`
15+
16+
output: `[1, 2, 6, 4, 5]`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Introduction
2+
3+
A shipment of emergency supplies has arrived, but there's a problem.
4+
To protect from damage, the items — flashlights, first-aid kits, blankets — are packed inside boxes, and some of those boxes are nested several layers deep inside other boxes!
5+
6+
To be prepared for an emergency, everything must be easily accessible in one box.
7+
Can you unpack all the supplies and place them into a single box, so they're ready when needed most?

exercises/practice/flatten-array/.meta/tests.toml

+20
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,32 @@ description = "null values are omitted from the final result"
3232

3333
[c6cf26de-8ccd-4410-84bd-b9efd88fd2bc]
3434
description = "consecutive null values at the front of the list are omitted from the final result"
35+
include = false
36+
37+
[bc72da10-5f55-4ada-baf3-50e4da02ec8e]
38+
description = "consecutive null values at the front of the array are omitted from the final result"
39+
reimplements = "c6cf26de-8ccd-4410-84bd-b9efd88fd2bc"
3540

3641
[382c5242-587e-4577-b8ce-a5fb51e385a1]
3742
description = "consecutive null values in the middle of the list are omitted from the final result"
43+
include = false
44+
45+
[6991836d-0d9b-4703-80a0-3f1f23eb5981]
46+
description = "consecutive null values in the middle of the array are omitted from the final result"
47+
reimplements = "382c5242-587e-4577-b8ce-a5fb51e385a1"
3848

3949
[ef1d4790-1b1e-4939-a179-51ace0829dbd]
4050
description = "6 level nest list with null values"
51+
include = false
52+
53+
[dc90a09c-5376-449c-a7b3-c2d20d540069]
54+
description = "6 level nested array with null values"
55+
reimplements = "ef1d4790-1b1e-4939-a179-51ace0829dbd"
4156

4257
[85721643-705a-4150-93ab-7ae398e2942d]
4358
description = "all values in nested list are null"
59+
include = false
60+
61+
[51f5d9af-8f7f-4fb5-a156-69e8282cb275]
62+
description = "all values in nested array are null"
63+
reimplements = "85721643-705a-4150-93ab-7ae398e2942d"

exercises/practice/flatten-array/flatten_array.vader

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@ Execute (null values are omitted from the final result):
3434
let g:expected = [1, 2]
3535
AssertEqual g:expected, Flatten(g:array)
3636

37-
Execute (consecutive null values at the front of the list are omitted from the final result):
37+
Execute (consecutive null values at the front of the array are omitted from the final result):
3838
let g:array = [v:null, v:null, 3]
3939
let g:expected = [3]
4040
AssertEqual g:expected, Flatten(g:array)
4141

42-
Execute (consecutive null values in the middle of the list are omitted from the final result):
42+
Execute (consecutive null values in the middle of the array are omitted from the final result):
4343
let g:array = [1, v:null, v:null, 4]
4444
let g:expected = [1, 4]
4545
AssertEqual g:expected, Flatten(g:array)
4646

47-
Execute (6 level nest list with null values):
47+
Execute (6 level nested array with null values):
4848
let g:array = [0, 2, [[2, 3], 8, [[100]], v:null, [[v:null]]], -2]
4949
let g:expected = [0, 2, 2, 3, 8, 100, -2]
5050
AssertEqual g:expected, Flatten(g:array)
5151

52-
Execute (all values in nested list are null):
52+
Execute (all values in nested array are null):
5353
let g:array = [v:null, [[[v:null]]], v:null, v:null, [[v:null, v:null], v:null], v:null]
5454
let g:expected = []
5555
AssertEqual g:expected, Flatten(g:array)
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
# Instructions
22

3-
Calculate the number of grains of wheat on a chessboard given that the number on each square doubles.
3+
Calculate the number of grains of wheat on a chessboard.
44

5-
There once was a wise servant who saved the life of a prince.
6-
The king promised to pay whatever the servant could dream up.
7-
Knowing that the king loved chess, the servant told the king he would like to have grains of wheat.
8-
One grain on the first square of a chess board, with the number of grains doubling on each successive square.
5+
A chessboard has 64 squares.
6+
Square 1 has one grain, square 2 has two grains, square 3 has four grains, and so on, doubling each time.
97

10-
There are 64 squares on a chessboard (where square 1 has one grain, square 2 has two grains, and so on).
8+
Write code that calculates:
119

12-
Write code that shows:
13-
14-
- how many grains were on a given square, and
10+
- the number of grains on a given square
1511
- the total number of grains on the chessboard
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Introduction
2+
3+
There once was a wise servant who saved the life of a prince.
4+
The king promised to pay whatever the servant could dream up.
5+
Knowing that the king loved chess, the servant told the king he would like to have grains of wheat.
6+
One grain on the first square of a chessboard, with the number of grains doubling on each successive square.

exercises/practice/grains/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
},
1818
"blurb": "Calculate the number of grains of wheat on a chessboard given that the number on each square doubles.",
1919
"source": "The CodeRanch Cattle Drive, Assignment 6",
20-
"source_url": "https://coderanch.com/wiki/718824/Grains"
20+
"source_url": "https://web.archive.org/web/20240908084142/https://coderanch.com/wiki/718824/Grains"
2121
}

exercises/practice/leap/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
},
2121
"blurb": "Determine whether a given year is a leap year.",
2222
"source": "CodeRanch Cattle Drive, Assignment 3",
23-
"source_url": "https://coderanch.com/t/718816/Leap"
23+
"source_url": "https://web.archive.org/web/20240907033714/https://coderanch.com/t/718816/Leap"
2424
}

exercises/practice/pig-latin/.meta/tests.toml

+3
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ description = "first letter and ay are moved to the end of words that start with
3939
[bce94a7a-a94e-4e2b-80f4-b2bb02e40f71]
4040
description = "first letter and ay are moved to the end of words that start with consonants -> word beginning with q without a following u"
4141

42+
[e59dbbe8-ccee-4619-a8e9-ce017489bfc0]
43+
description = "first letter and ay are moved to the end of words that start with consonants -> word beginning with consonant and vowel containing qu"
44+
4245
[c01e049a-e3e2-451c-bf8e-e2abb7e438b8]
4346
description = "some letter clusters are treated like a single consonant -> word beginning with ch"
4447

exercises/practice/pig-latin/pig_latin.vader

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
Execute (word beginning with a):
23
let g:phrase = "apple"
34
let g:expected = "appleay"
@@ -27,7 +28,6 @@ Execute (word beginning with a vowel and followed by a qu):
2728
let g:phrase = "equal"
2829
let g:expected = "equalay"
2930
AssertEqual g:expected, Translate(g:phrase)
30-
3131
Execute (word beginning with p):
3232
let g:phrase = "pig"
3333
let g:expected = "igpay"
@@ -47,6 +47,11 @@ Execute (word beginning with q without a following u):
4747
let g:phrase = "qat"
4848
let g:expected = "atqay"
4949
AssertEqual g:expected, Translate(g:phrase)
50+
51+
Execute (word beginning with consonant and vowel containing qu):
52+
let g:phrase = "liquid"
53+
let g:expected = "iquidlay"
54+
AssertEqual g:expected, Translate(g:phrase)
5055
Execute (word beginning with ch):
5156
let g:phrase = "chair"
5257
let g:expected = "airchay"

exercises/practice/protein-translation/.meta/tests.toml

+4
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,15 @@ description = "Translation stops if STOP codon in middle of three-codon sequence
8787
[2c2a2a60-401f-4a80-b977-e0715b23b93d]
8888
description = "Translation stops if STOP codon in middle of six-codon sequence"
8989

90+
[f6f92714-769f-4187-9524-e353e8a41a80]
91+
description = "Sequence of two non-STOP codons does not translate to a STOP codon"
92+
9093
[1e75ea2a-f907-4994-ae5c-118632a1cb0f]
9194
description = "Non-existing codon can't translate"
9295

9396
[9eac93f3-627a-4c90-8653-6d0a0595bc6f]
9497
description = "Unknown amino acids, not part of a codon, can't translate"
98+
reimplements = "1e75ea2a-f907-4994-ae5c-118632a1cb0f"
9599

96100
[9d73899f-e68e-4291-b1e2-7bf87c00f024]
97101
description = "Incomplete RNA sequence can't translate"

exercises/practice/protein-translation/protein_translation.vader

+5
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,11 @@ Execute (Translation stops if STOP codon in middle of six-codon sequence):
129129
let g:expected = ['Tryptophan', 'Cysteine', 'Tyrosine']
130130
AssertEqual g:expected, Proteins(g:strand)
131131

132+
Execute (Sequence of two non-STOP codons does not translate to a STOP codon):
133+
let g:strand = "AUGAUG"
134+
let g:expected = ['Methionine', 'Methionine']
135+
AssertEqual g:expected, Proteins(g:strand)
136+
132137
Execute (Non-existing codon can't translate):
133138
let g:strand = "AAA"
134139
let g:expected = "Invalid codon"

exercises/practice/reverse-string/.meta/tests.toml

+9
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,12 @@ description = "a palindrome"
2626

2727
[b9e7dec1-c6df-40bd-9fa3-cd7ded010c4c]
2828
description = "an even-sized word"
29+
30+
[1bed0f8a-13b0-4bd3-9d59-3d0593326fa2]
31+
description = "wide characters"
32+
33+
[93d7e1b8-f60f-4f3c-9559-4056e10d2ead]
34+
description = "grapheme cluster with pre-combined form"
35+
36+
[1028b2c1-6763-4459-8540-2da47ca512d9]
37+
description = "grapheme clusters"

exercises/practice/reverse-string/reverse_string.vader

+15
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,18 @@ Execute (an even-sized word):
2828
let g:value = "drawer"
2929
let g:expected = "reward"
3030
AssertEqual g:expected, Reverse(g:value)
31+
32+
Execute (wide characters):
33+
let g:value = "子猫"
34+
let g:expected = "猫子"
35+
AssertEqual g:expected, Reverse(g:value)
36+
37+
Execute (grapheme cluster with pre-combined form):
38+
let g:value = "Würstchenstand"
39+
let g:expected = "dnatsnehctsrüW"
40+
AssertEqual g:expected, Reverse(g:value)
41+
42+
Execute (grapheme clusters):
43+
let g:value = "ผู้เขียนโปรแกรม"
44+
let g:expected = "มรกแรปโนยขีเผู้"
45+
AssertEqual g:expected, Reverse(g:value)

exercises/practice/rna-transcription/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
".meta/example.vim"
1818
]
1919
},
20-
"blurb": "Given a DNA strand, return its RNA Complement Transcription.",
20+
"blurb": "Given a DNA strand, return its RNA complement.",
2121
"source": "Hyperphysics",
2222
"source_url": "https://web.archive.org/web/20220408112140/http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html"
2323
}

0 commit comments

Comments
 (0)