Parcourir la source

Update README.md

KrYounger il y a 6 ans
Parent
révision
497a9a4c12
Aucun compte lié à l'adresse email de l'auteur
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  1. 1
    0
      README.md

+ 1
- 0
README.md Voir le fichier

@@ -4,6 +4,7 @@ a simple set of crypt problems.
4 4
 Create a few ciphers. Use String inside of your classes.
5 5
 
6 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 8
 * Caesar - make a subclass of ROT13 that implements the famous caesar cipher.
8 9
 * Create you own cipher, using a different set of 
9 10