8000 Added hint to README.md Instructions by CatQueenCodes · Pull Request #115 · TheOdinProject/javascript-exercises · GitHub
[go: up one dir, main page]

Skip to content

Added hint to README.md Instructions #115

8000
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 16, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Split Diff View
Split
Diff view
2 changes: 2 additions & 0 deletions caesar/README.md
48A1
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Implement the legendary caesar cipher:

> 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.

Hint: You may need to convert letters to their unicode values. Be sure to read the documentation!

write a function that takes a string to be encoded and a shift factor and then returns the encoded string:

```javascript
Expand Down
0