Skip to content

Commit 21f0a01

Browse files
committed
2022-06-30 update: added "Spiral Matrix"
1 parent 90f0133 commit 21f0a01

File tree

2 files changed

+68
-0
lines changed

2 files changed

+68
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
package com.smlnskgmail.jaman.leetcodejava.medium;
2+
3+
import java.util.ArrayList;
4+
import java.util.List;
5+
6+
// https://leetcode.com/problems/spiral-matrix/
7+
public class SpiralMatrix {
8+
9+
private final int[][] input;
10+
11+
public SpiralMatrix(int[][] input) {
12+
this.input = input;
13+
}
14+
15+
public List<Integer> solution() {
16+
int top = 0;
17+
int bottom = input.length - 1;
18+
int left = 0;
19+
int right = input[0].length - 1;
20+
List<Integer> result = new ArrayList<>();
21+
while (top <= bottom && left <= right) {
22+
for (int i = left; i <= right; i++) {
23+
result.add(input[top][i]);
24+
}
25+
top++;
26+
27+
for (int i = top; i <= bottom; i++) {
28+
result.add(input[i][right]);
29+
}
30+
right--;
31+
32+
if (top <= bottom) {
33+
for (int i = right; i >= left; i--) {
34+
result.add(input[bottom][i]);
35+
}
36+
bottom--;
37+
}
38+
39+
if (left <= right) {
40+
for (int i = bottom; i >= top; i--) {
41+
result.add(input[i][left]);
42+
}
43+
left++;
44+
}
45+
}
46+
return result;
47+
}
48+
49+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package com.smlnskgmail.jaman.leetcodejava.medium;
2+
3+
import org.junit.Test;
4+
5+
import java.util.List;
6+
7+
import static org.junit.Assert.assertEquals;
8+
9+
public class SpiralMatrixTest {
10+
11+
@Test
12+
public void defaultTest() {
13+
assertEquals(
14+
List.of(1, 2, 3, 6, 9, 8, 7, 4, 5),
15+
new SpiralMatrix(new int[][]{{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}).solution()
16+
);
17+
}
18+
19+
}

0 commit comments

Comments
 (0)