docs: adding more details

This commit is contained in:
zanninso 2024-07-09 18:01:04 +01:00 committed by zanninso
parent eed0e21332
commit c145bddcc3
1 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,9 @@
### Instructions
Create a class `SpiralMatrix` that provides a method to generate a matrix filled with elements from 1 to n\*n in spiral order, given an integer n.
Create a class `SpiralMatrix` that provides a method to generate a matrix filled with elements from 1 to n\*n in spiral order, given an integer n where n > 0.
### Expected Class