8000 Update README.md · GeraldCO/javascript-exercises@074b3b7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 074b3b7

Browse files
Update README.md
1 parent effa0cd commit 074b3b7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

caesar/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Implement the legendary caesar cipher:
44

55
> In cryptography, a Caesar cipher, also known as Caesar's cipher, the shift cipher, Caesar's code or Caesar shift, is one of the simplest and most widely known encryption techniques. It is a type of 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 would be replaced by A, E would become B, and so on. The method is named after Julius Caesar, who used it in his private correspondence.
66
7+
Hint: You will need to convert letters to their corrosponding unicode values.
8+
79
write a function that takes a string to be encoded and a shift factor and then returns the encoded string:
810

911
```javascript

0 commit comments

Comments
 (0)
0