-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathJavaArraylist.java
More file actions
28 lines (23 loc) Β· 878 Bytes
/
JavaArraylist.java
File metadata and controls
28 lines (23 loc) Β· 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// https://www.hackerrank.com/challenges/java-arraylist/problem
import helper.InputHelper;
public class JavaArraylist {
public static void main(String[] args) {
int length = InputHelper.takeLength();
int[][] matrix = new int[length][];
for (int row = 0 ; row < length ; row++) {
int columns = InputHelper.takeLength();
matrix[row] = new int[columns];
matrix[row] = InputHelper.get1DArray(columns);
}
int queries = InputHelper.takeLength();
while (queries-- > 0) {
int row = InputHelper.takeLength();
int column = InputHelper.takeLength();
System.out.println(
row - 1 < length && column - 1 < matrix[row - 1].length
? matrix[row - 1][column - 1]
: "ERROR!"
);
}
}
}