- import java.util.List;
-
- class Sieve {
- Sieve(int maxPrime) {
- throw new UnsupportedOperationException("Delete this statement and provide your own implementation.");
- }
-
- List<Integer> getPrimes() {
- throw new UnsupportedOperationException("Delete this statement and provide your own implementation.");
- }
- }
|