Skip to content

Commit 06f227d

Browse files
committed
add case Convert method
1 parent 502d8ae commit 06f227d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/CaesarShift.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
public class CaesarShift {
2+
23
public String encrypt(String msg){
3-
return null;
4+
return msg.toUpperCase();
45
}
6+
57
}

0 commit comments

Comments
 (0)