Skip to content

Commit f17c4f3

Browse files
authored
2022-09-01 update: added "Largest Local Values in a Matrix" (#79)
1 parent a9ffe33 commit f17c4f3

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
package com.smlnskgmail.jaman.leetcodejava.easy;
2+
3+
// https://leetcode.com/problems/largest-local-values-in-a-matrix/
4+
public class LargestLocalValuesInAMatrix {
5+
6+
private final int[][] input;
7+
8+
public LargestLocalValuesInAMatrix(int[][] input) {
9+
this.input = input;
10+
}
11+
12+
public int[][] solution() {
13+
int n = input.length;
14+
int[][] result = new int[n - 2][n - 2];
15+
for (int i = 0; i < n - 2; i++) {
16+
for (int j = 0; j < n - 2; j++) {
17+
result[i][j] = highest(input, i, j);
18+
}
19+
}
20+
return result;
21+
}
22+
23+
private int highest(int[][] grid, int r, int c) {
24+
int max = 0;
25+
for (int i = r; i < r + 3; i++) {
26+
for (int j = c; j < c + 3; j++) {
27+
max = Math.max(max, grid[i][j]);
28+
}
29+
}
30+
return max;
31+
}
32+
33+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package com.smlnskgmail.jaman.leetcodejava.easy;
2+
3+
import org.junit.Test;
4+
5+
import static org.junit.Assert.assertArrayEquals;
6+
import static org.junit.Assert.assertEquals;
7+
8+
public class LargestLocalValuesInAMatrixTest {
9+
10+
@Test
11+
public void defaultTest() {
12+
int[][] correct = new int[][]{{9, 9}, {8, 6}};
13+
int[][] solution = new LargestLocalValuesInAMatrix(
14+
new int[][]{{9, 9, 8, 1}, {5, 6, 2, 6}, {8, 2, 6, 4}, {6, 2, 2, 2}}
15+
).solution();
16+
assertEquals(correct.length, solution.length);
17+
assertEquals(correct[0].length, solution[0].length);
18+
for (int i = 0; i < correct.length; i++) {
19+
assertArrayEquals(correct[i], solution[i]);
20+
}
21+
}
22+
23+
}

0 commit comments

Comments
 (0)