We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2970424 commit d45d037Copy full SHA for d45d037
src/main/java/com/thealgorithms/matrix/SpiralMatrixII.java
@@ -1,3 +1,10 @@
1
+/**
2
+ * Spiral Matrix II
3
+ * Generates an n x n matrix filled with numbers from 1 to n^2 in spiral order.
4
+ *
5
+ * @see <a href="https://leetcode.com/problems/spiral-matrix-ii/">LeetCode – Spiral Matrix II</a>
6
+ * @see <a href="https://en.wikipedia.org/wiki/Spiral_matrix">Wikipedia – Spiral Matrix</a>
7
+ */
8
package com.thealgorithms.matrix;
9
10
public class SpiralMatrixII {
0 commit comments