Skip to content

Commit ad05110

Browse files
committed
Testing new workflow
1 parent df5116b commit ad05110

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

exercises/practice/affine-cipher/.docs/instructions.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@ E(x) = (ai + b) mod m
1818

1919
Where:
2020

21-
- `i` is the letter's index from `0` to the length of the alphabet - 1.
22-
- `m` is the length of the alphabet.
23-
For the Latin alphabet `m` is `26`.
24-
- `a` and `b` are integers which make up the encryption key.
25-
2621
Values `a` and `m` must be _coprime_ (or, _relatively prime_) for automatic decryption to succeed, i.e., they have number `1` as their only common factor (more information can be found in the [Wikipedia article about coprime integers][coprime-integers]).
2722
In case `a` is not coprime to `m`, your program should indicate that this is an error.
2823
Otherwise it should encrypt or decrypt with the provided key.

0 commit comments

Comments
 (0)