forked from exercism/java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMatrix.java
More file actions
23 lines (17 loc) · 761 Bytes
/
Matrix.java
File metadata and controls
23 lines (17 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Matrix {
Matrix(String matrixAsString) {
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
}
int[] getRow(int rowNumber) {
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
}
int[] getColumn(int columnNumber) {
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
}
int getRowsCount() {
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
}
int getColumnsCount() {
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
}
}