mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-25 21:44:07 +08:00
Format code with prettier (#3375)
This commit is contained in:
@ -84,9 +84,11 @@ public class SimpleSubCipher {
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
String a = encode("defend the east wall of the castle", "phqgiumeaylnofdxjkrcvstzwb");
|
||||
String a = encode(
|
||||
"defend the east wall of the castle",
|
||||
"phqgiumeaylnofdxjkrcvstzwb"
|
||||
);
|
||||
String b = decode(a, "phqgiumeaylnofdxjkrcvstzwb");
|
||||
System.out.println(b);
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user