nth-prime: add starter implementation
@@ -0,0 +1,7 @@
+class PrimeCalculator {
+
+ int nth(int nth) {
+ throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
+ }
+}