init
This commit is contained in:
11
ciphers/SubstitutionRandom.java
Normal file
11
ciphers/SubstitutionRandom.java
Normal file
@@ -0,0 +1,11 @@
|
||||
// TODO: Write your implementation to SubstitutionRandom here!
|
||||
import java.util.*;
|
||||
|
||||
public class SubstitutionRandom extends Substitution {
|
||||
public static void main(String[] args) {
|
||||
Random balls = new Random();
|
||||
int boner = balls.nextInt(4);
|
||||
System.out.println(boner);
|
||||
Collections.shuffle()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user