File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
exercises/practice/pig-latin Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,9 @@ description = "first letter and ay are moved to the end of words that start with
39
39
[bce94a7a-a94e-4e2b-80f4-b2bb02e40f71 ]
40
40
description = " first letter and ay are moved to the end of words that start with consonants -> word beginning with q without a following u"
41
41
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
+
42
45
[c01e049a-e3e2-451c-bf8e-e2abb7e438b8 ]
43
46
description = " some letter clusters are treated like a single consonant -> word beginning with ch"
44
47
Original file line number Diff line number Diff line change 40
40
(test-equal? "word beginning with q without a following u "
41
41
(translate "qat " ) "atqay " )
42
42
43
+ (test-equal? "word beginning with consonant and vowel containing qu "
44
+ (translate "liquid " ) "iquidlay " )
45
+
43
46
(test-equal? "word beginning with ch "
44
47
(translate "chair " ) "airchay " )
45
48
You can’t perform that action at this time.
0 commit comments