forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMirrorOfMatrix.java
36 lines (26 loc) · 1.02 KB
/
MirrorOfMatrix.java
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
29
30
31
32
33
34
35
36
package com.thealgorithms.matrix;
// Problem Statement
import com.thealgorithms.matrix.utils.MatrixUtil;
/*
We have given an array of m x n (where m is the number of rows and n is the number of columns).
Print the new matrix in such a way that the new matrix is the mirror image of the original matrix.
The Original matrix is: | The Mirror matrix is:
1 2 3 | 3 2 1
4 5 6 | 6 5 4
7 8 9 | 9 8 7
@author - Aman (https://github.com/Aman28801)
*/
public final class MirrorOfMatrix {
private MirrorOfMatrix() {
}
public static double[][] mirrorMatrix(final double[][] originalMatrix) {
MatrixUtil.validateInputMatrix(originalMatrix);
int numRows = originalMatrix.length;
int numCols = originalMatrix[0].length;
double[][] mirroredMatrix = new double[numRows][numCols];
for (int i = 0; i < numRows; i++) {
mirroredMatrix[i] = MatrixUtil.reverseRow(originalMatrix[i]);
}
return mirroredMatrix;
}
}