8000 Merge pull request #115 from GraceSchwar/master · riccdigital/javascript-exercises@cef55bc · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit cef55bc

Browse files
authored
Merge pull request TheOdinProject#115 from GraceSchwar/master
Added hint to README.md Instructions
2 parents effa0cd + 7d37e6d commit cef55bc

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 may need to convert letters to their unicode values. Be sure to read the documentation!
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