Ver código fonte

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

difference-of-squares: add starter implementation
FridaTveit 8 anos atrás
pai
commit
49a0e0e4d1
Nenhuma conta conectada ao e-mail do autor de commit

+ 0
- 0
exercises/difference-of-squares/src/main/java/.keep Ver arquivo


+ 15
- 0
exercises/difference-of-squares/src/main/java/DifferenceOfSquaresCalculator.java Ver arquivo

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