Skip to content

Commit 9bdcee5

Browse files
committed
sieve: create and validate starter implementation according to POLICIES.md
1 parent 50c57b9 commit 9bdcee5

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

exercises/sieve/src/main/java/.keep

Whitespace-only changes.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import java.util.List;
2+
3+
public class Sieve {
4+
public Sieve(int maxPrime) {
5+
throw new UnsupportedOperationException("Delete this statement and provide your own implementation.");
6+
}
7+
8+
public List<Integer> getPrimes() {
9+
throw new UnsupportedOperationException("Delete this statement and provide your own implementation.");
10+
}
11+
}

0 commit comments

Comments
 (0)