@@ -0,0 +1,11 @@
+import java.util.List;
+
+public class Sieve {
+ public Sieve(int maxPrime) {
+ throw new UnsupportedOperationException("Delete this statement and provide your own implementation.");
+ }
+ public List<Integer> getPrimes() {
+}