Sfoglia il codice sorgente

Merge pull request #1028 from sjwarner-bp/difference-of-squares-starter

difference-of-squares: add starter implementation
FridaTveit 8 anni fa
parent
commit
49a0e0e4d1
No account linked to committer's email

+ 0
- 0
exercises/difference-of-squares/src/main/java/.keep Vedi File


+ 15
- 0
exercises/difference-of-squares/src/main/java/DifferenceOfSquaresCalculator.java Vedi File

@@ -0,0 +1,15 @@
1
+class DifferenceOfSquaresCalculator {
2
+
3
+    int computeSquareOfSumTo(int input) {
4
+        throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
5
+    }
6
+
7
+    int computeSumOfSquaresTo(int input) {
8
+        throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
9
+    }
10
+
11
+    int computeDifferenceOfSquares(int input) {
12
+        throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
13
+    }
14
+
15
+}