Преглед изворни кода

sieve: create and validate starter implementation according to POLICIES.md

Smarticles101 пре 9 година
родитељ
комит
9bdcee50a6
No account linked to committer's email
2 измењених фајлова са 11 додато и 0 уклоњено
  1. 0
    0
      exercises/sieve/src/main/java/.keep
  2. 11
    0
      exercises/sieve/src/main/java/Sieve.java

+ 0
- 0
exercises/sieve/src/main/java/.keep Прегледај датотеку


+ 11
- 0
exercises/sieve/src/main/java/Sieve.java Прегледај датотеку

@@ -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
+}