소스 검색

difference-of-squares: add starter implementation

Sam Warner 8 년 전
부모
커밋
7c890e7da5

+ 0
- 0
exercises/difference-of-squares/src/main/java/.keep 파일 보기


+ 15
- 0
exercises/difference-of-squares/src/main/java/DifferenceOfSquaresCalculator.java 파일 보기

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