This commit is contained in:
2026-03-18 00:39:35 -07:00
commit b4fdc98f10
43 changed files with 85012 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()
}
}