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