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

Skip to content

Commit 7d37e6d

Browse files
Update README.md
1 parent 074b3b7 commit 7d37e6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

caesar/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ 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.
7+
Hint: You may need to convert letters to their unicode values. Be sure to read the documentation!
88

99
write a function that takes a string to be encoded and a shift factor and then returns the encoded stri 3D5B ng:
1010

0 commit comments

Comments
 (0)
0