diff --git a/exercises/practice/crypto-square/.meta/tests.toml b/exercises/practice/crypto-square/.meta/tests.toml index 085d142e..94ef0819 100644 --- a/exercises/practice/crypto-square/.meta/tests.toml +++ b/exercises/practice/crypto-square/.meta/tests.toml @@ -32,3 +32,8 @@ description = "8 character plaintext results in 3 chunks, the last one with a tr [fbcb0c6d-4c39-4a31-83f6-c473baa6af80] description = "54 character plaintext results in 7 chunks, the last two with trailing spaces" +include = false + +[33fd914e-fa44-445b-8f38-ff8fbc9fe6e6] +description = "54 character plaintext results in 8 chunks, the last two with trailing spaces" +reimplements = "fbcb0c6d-4c39-4a31-83f6-c473baa6af80" diff --git a/exercises/practice/crypto-square/crypto-square-test.el b/exercises/practice/crypto-square/crypto-square-test.el index f2c9ddcb..1160dbef 100644 --- a/exercises/practice/crypto-square/crypto-square-test.el +++ b/exercises/practice/crypto-square/crypto-square-test.el @@ -25,7 +25,7 @@ (ert-deftest 8-character-plaintext-results-in-3-chunks-the-last-one-with-a-trailing-space () (should (equal "clu hlt io " (encipher "Chill out.")))) -(ert-deftest 54-character-plaintext-results-in-7-chunks-the-last-two-with-trailing-spaces () +(ert-deftest 54-character-plaintext-results-in-8-chunks-the-last-two-with-trailing-spaces () (should (equal "imtgdvs fearwer mayoogo anouuio ntnnlvt wttddes aohghn sseoau " (encipher "If man was meant to stay on the ground, god would have given us roots.")))) diff --git a/exercises/practice/eliuds-eggs/.docs/introduction.md b/exercises/practice/eliuds-eggs/.docs/introduction.md index 81989748..2b2e5c43 100644 --- a/exercises/practice/eliuds-eggs/.docs/introduction.md +++ b/exercises/practice/eliuds-eggs/.docs/introduction.md @@ -58,7 +58,7 @@ The position information encoding is calculated as follows: ### Decimal number on the display -16 +8 ### Actual eggs in the coop diff --git a/exercises/practice/meetup/.docs/instructions.md b/exercises/practice/meetup/.docs/instructions.md index 000de2fd..8b1bda5e 100644 --- a/exercises/practice/meetup/.docs/instructions.md +++ b/exercises/practice/meetup/.docs/instructions.md @@ -2,7 +2,7 @@ Your task is to find the exact date of a meetup, given a month, year, weekday and week. -There are five week values to consider: `first`, `second`, `third`, `fourth`, `last`, `teenth`. +There are six week values to consider: `first`, `second`, `third`, `fourth`, `last`, `teenth`. For example, you might be asked to find the date for the meetup on the first Monday in January 2018 (January 1, 2018).