This commit is contained in:
nik
2026-05-20 16:20:45 -07:00
commit 007710b5a8
91 changed files with 450401 additions and 0 deletions

View 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()
}
}