|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
|
|
|
2
|
+class Matrix {
|
|
|
3
|
+
|
|
|
4
|
+ Matrix(String matrixAsString) {
|
|
|
5
|
+ throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
|
|
|
6
|
+ }
|
|
|
7
|
+
|
|
|
8
|
+ int[] getRow(int rowNumber) {
|
|
|
9
|
+ throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
|
|
|
10
|
+ }
|
|
|
11
|
+
|
|
|
12
|
+ int[] getColumn(int columnNumber) {
|
|
|
13
|
+ throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
|
|
|
14
|
+ }
|
|
|
15
|
+
|
|
|
16
|
+ int getRowsCount() {
|
|
|
17
|
+ throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
|
|
|
18
|
+ }
|
|
|
19
|
+
|
|
|
20
|
+ int getColumnsCount() {
|
|
|
21
|
+ throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
|
|
|
22
|
+ }
|
|
|
23
|
+}
|