Skip to content

Commit

Permalink
replaced broken Caesar cipher link with alternative resource (#26822)
Browse files Browse the repository at this point in the history
  • Loading branch information
dellaighted authored Nov 27, 2023
1 parent 21460a6 commit 7709cac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/testing_javascript/project_testing_practice.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Write tests for the following, and then make the tests pass!

3. A `calculator` object that contains functions for the basic operations: `add`, `subtract`, `divide`, and `multiply`. Each of these functions should take two numbers and return the correct calculation.

4. A `caesarCipher` function that takes a string and a shift factor and returns it with each character "shifted". Read more about how a Caesar cipher works on [this website](http://practicalcryptography.com/ciphers/caesar-cipher/).
4. A `caesarCipher` function that takes a string and a shift factor and returns it with each character "shifted". Read more about how a Caesar cipher works on [this website](https://crypto.interactive-maths.com/caesar-shift-cipher.html).

1. Don’t forget to test wrapping from `z` to `a`.
2. Don’t forget to test keeping the same case.
Expand Down

0 comments on commit 7709cac

Please sign in to comment.