Skip to content

Commit 90f0133

Browse files
committed
2022-06-29 update: added "Determine Whether Matrix Can Be Obtained By Rotation"
1 parent a6c9f21 commit 90f0133

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
package com.smlnskgmail.jaman.leetcodejava.easy;
2+
3+
// https://leetcode.com/problems/determine-whether-matrix-can-be-obtained-by-rotation/
4+
public class DetermineWhetherMatrixCanBeObtainedByRotation {
5+
6+
private final int[][] mat;
7+
private final int[][] target;
8+
9+
public DetermineWhetherMatrixCanBeObtainedByRotation(int[][] mat, int[][] target) {
10+
this.mat = mat;
11+
this.target = target;
12+
}
13+
14+
public boolean solution() {
15+
int length = mat.length;
16+
boolean fC = true;
17+
boolean sC = true;
18+
boolean tC = true;
19+
boolean lC = true;
20+
for (int i = 0; i < length; i++) {
21+
for (int j = 0; j < length; j++) {
22+
int curr = mat[i][j];
23+
if (fC && curr != target[i][j]) {
24+
fC = false;
25+
}
26+
if (sC && curr != target[j][length - i - 1]) {
27+
sC = false;
28+
}
29+
if (tC && curr != target[length - i - 1][length - j - 1]) {
30+
tC = false;
31+
}
32+
if (lC && curr != target[length - j - 1][i]) {
33+
lC = false;
34+
}
35+
}
36+
}
37+
return fC || sC || tC || lC;
38+
}
39+
40+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package com.smlnskgmail.jaman.leetcodejava.easy;
2+
3+
import org.junit.Test;
4+
5+
import static org.junit.Assert.assertTrue;
6+
7+
public class DetermineWhetherMatrixCanBeObtainedByRotationTest {
8+
9+
@Test
10+
public void defaultTest() {
11+
assertTrue(
12+
new DetermineWhetherMatrixCanBeObtainedByRotation(
13+
new int[][]{{0, 1}, {1, 0}},
14+
new int[][]{{1, 0}, {0, 1}}
15+
).solution()
16+
);
17+
}
18+
19+
}

0 commit comments

Comments
 (0)