mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 01:33:54 +01:00
Typo fix in description of Caesar cipher.
Fix a typographical error in the description of Caesar cipher. The description is in the documentation on coding contracts.
This commit is contained in:
parent
3ee55b2918
commit
6e744b2e76
@ -374,7 +374,7 @@ The list contains the name of (i.e. the value returned by
|
|||||||
| | | substitution cipher in which each letter in the plaintext is replaced by a letter some |
|
| | | substitution cipher in which each letter in the plaintext is replaced by a letter some |
|
||||||
| | | fixed number of positions down the alphabet. For example, with a left shift of 3, D |
|
| | | fixed number of positions down the alphabet. For example, with a left shift of 3, D |
|
||||||
| | | would be replaced by A, E would become B, and A would become X (because of rotation). |
|
| | | would be replaced by A, E would become B, and A would become X (because of rotation). |
|
||||||
| | | You are given an array with two elements.The first element is the plaintext, the |
|
| | | You are given an array with two elements. The first element is the plaintext, the |
|
||||||
| | | second element is the left shift value. Return the ciphertext as uppercase string. |
|
| | | second element is the left shift value. Return the ciphertext as uppercase string. |
|
||||||
| | | Spaces remains the same. |
|
| | | Spaces remains the same. |
|
||||||
+-----------------------------------------+------------------------------------------------------------------------------------------+
|
+-----------------------------------------+------------------------------------------------------------------------------------------+
|
||||||
|
Loading…
Reference in New Issue
Block a user