Skip to content
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
2 changes: 1 addition & 1 deletion exercises/crypto-square/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ chunks with a single trailing space.
```

Notice that were we to stack these, we could visually decode the
cyphertext back in to the original message:
ciphertext back in to the original message:

```text
"imtgdvs"
Expand Down
4 changes: 2 additions & 2 deletions exercises/dominoes/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ Make a chain of dominoes.

Compute a way to order a given set of dominoes in such a way that they form a
correct domino chain (the dots on one half of a stone match the dots on the
neighbouring half of an adjacent stone) and that dots on the halfs of the stones
which don't have a neighbour (the first and last stone) match each other.
neighbouring half of an adjacent stone) and that dots on the halves of the
stones which don't have a neighbour (the first and last stone) match each other.

For example given the stones `[2|1]`, `[2|3]` and `[1|3]` you should compute something
like `[1|2] [2|3] [3|1]` or `[3|2] [2|1] [1|3]` or `[1|3] [3|2] [2|1]` etc, where the first and last numbers are the same.
Expand Down
4 changes: 2 additions & 2 deletions exercises/simple-cipher/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ for A, and so with the others."

Ciphers are very straight-forward algorithms that allow us to render
text less readable while still allowing easy deciphering. They are
vulnerable to many forms of cryptoanalysis, but we are lucky that
generally our little sisters are not cryptoanalysts.
vulnerable to many forms of cryptanalysis, but we are lucky that
generally our little sisters are not cryptanalysts.

The Caesar Cipher was used for some messages from Julius Caesar that
were sent afield. Now Caesar knew that the cipher wasn't very good, but
Expand Down