We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dad658e commit e084511Copy full SHA for e084511
1 file changed
exercises/sieve/src/main/java/Sieve.java
@@ -1,11 +1,11 @@
1
import java.util.List;
2
3
-public class Sieve {
4
- public Sieve(int maxPrime) {
+class Sieve {
+ Sieve(int maxPrime) {
5
throw new UnsupportedOperationException("Delete this statement and provide your own implementation.");
6
}
7
8
- public List<Integer> getPrimes() {
+ List<Integer> getPrimes() {
9
10
11
0 commit comments