소스 검색

Update README.md

KrYounger 6 년 전
부모
커밋
5d044a5969
No account linked to committer's email
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3
    3
      README.md

+ 3
- 3
README.md 파일 보기

@@ -3,9 +3,9 @@ a simple set of crypt problems.
3 3
 
4 4
 Create a few ciphers. Use String inside of your classes.
5 5
 
6
-1 ROT13 - take the 26 letters of the alphabet and create a `String <- doRot13(String)` method in the ROT13 class
7
-2 Caesar - make a subclass of ROT13 that implements the famous caesar cipher.
8
-3 Create you own cipher, using a different set of 
6
+* ROT13 - take the 26 letters of the alphabet and create a `String <- doRot13(String)` method in the ROT13 class
7
+* Caesar - make a subclass of ROT13 that implements the famous caesar cipher.
8
+* Create you own cipher, using a different set of 
9 9
 
10 10
 ## Explanation
11 11