Ver código fonte

Update README.md

KrYounger 8 anos atrás
pai
commit
497a9a4c12
Nenhuma conta conectada ao e-mail do autor de commit
1 arquivos alterados com 1 adições e 0 exclusões
  1. 1
    0
      README.md

+ 1
- 0
README.md Ver arquivo

4
 Create a few ciphers. Use String inside of your classes.
4
 Create a few ciphers. Use String inside of your classes.
5
 
5
 
6
 * ROT13 - take the 26 letters of the alphabet and create a `String <- crypt(String)` method in the ROT13 class
6
 * ROT13 - take the 26 letters of the alphabet and create a `String <- crypt(String)` method in the ROT13 class
7
+* Make a constructor that takes two arguments to set the cipher correspondence. `ROT13 superSecure = new ROT13("a","j");`
7
 * Caesar - make a subclass of ROT13 that implements the famous caesar cipher.
8
 * Caesar - make a subclass of ROT13 that implements the famous caesar cipher.
8
 * Create you own cipher, using a different set of 
9
 * Create you own cipher, using a different set of 
9
 
10