Skip to content

Commit 917284a

Browse files
committed
matrix
1 parent 0b21813 commit 917284a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,8 @@ The project is divided into two parts: `structure` and `solution`.
218218

219219
| No. | Title | Difficulty | Solution | Idea |
220220
| ---- | ------------------------------------------------------------ | ---------- | ------------------------------------------------------------ | --------- |
221+
| 54 | [Spiral Matrix](https://leetcode.com/problems/spiral-matrix/) | Medium | [SpiralMatrix.java](src/leetcode/solution/matrix/SpiralMatrix.java) | 4 Bound |
222+
| 59 | [Spiral Matrix II](https://leetcode.com/problems/spiral-matrix-ii/) | Medium | [SpiralMatrixII.java](src/leetcode/solution/matrix/SpiralMatrixII.java) | 4 Bound |
221223
| 867 | [Transpose Matrix](https://leetcode.com/problems/transpose-matrix/) | Easy | [TransposeMatrix.java](src/leetcode/solution/matrix/TransposeMatrix.java) | Traversal |
222224

223225
#### [Binary Search](src/leetcode/solution/BinarySearch)

src/leetcode/solution/array/SpiralMatrix.java renamed to src/leetcode/solution/matrix/SpiralMatrix.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package leetcode.solution.array;
1+
package leetcode.solution.matrix;
22

33
import java.util.LinkedList;
44
import java.util.List;

src/leetcode/solution/array/SpiralMatrixII.java renamed to src/leetcode/solution/matrix/SpiralMatrixII.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package leetcode.solution.array;
1+
package leetcode.solution.matrix;
22

33
import java.util.Arrays;
44

0 commit comments

Comments
 (0)