Skip to content
Closed
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/affine-cipher/canonical-data.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"exercise": "affine-cipher",
"version": "2.0.0",
"version": "2.0.1",
"comments": [
"The test are divided into two groups: ",
"* Encoding from English to affine cipher",
Expand Down
2 changes: 1 addition & 1 deletion exercises/affine-cipher/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ More information regarding how to find a Modular Multiplicative Inverse
and what it means can be found [here.](https://en.wikipedia.org/wiki/Modular_multiplicative_inverse)

Because automatic decryption fails if `a` is not coprime to `m` your
program should return status 1 and `"Error: a and m must be coprime."`
program should error
if they are not. Otherwise it should encode or decode with the
provided key.

Expand Down