Last active
January 31, 2023 06:23
-
-
Save jordanrios94/7b89e73c2a2699bbf1dea89090ac3d80 to your computer and use it in GitHub Desktop.
Write a function that accepts an integer N and returns a NxN spiral matrix.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// matrix(3); | |
// [[1, 2, 3], | |
// [8, 9, 4], | |
// [7, 6, 5]] | |
// matrix(4); | |
// [[1, 2, 3, 4], | |
// [12, 13, 14, 5], | |
// [11, 16, 15, 6], | |
// [10, 9, 8, 7]] | |
function matrix(n) { | |
const results = []; | |
for (let i = 0; i < n; i++) { | |
results.push([]); | |
} | |
let counter = 1; | |
let startColumn = 0; | |
let endColumn = n - 1; | |
let startRow = 0; | |
let endRow = n - 1; | |
while (startColumn <= endColumn && startRow <= endRow) { | |
// Top Row | |
for (let i = startColumn; i <= endColumn; i++) { | |
results[startRow][i] = counter; | |
counter++ | |
} | |
startRow++; | |
// Right Column | |
for (let i = startRow; i <= endRow; i++) { | |
results[i][endColumn] = counter; | |
counter++; | |
} | |
endColumn--; | |
// Bottom Row | |
for (let i = endColumn; i >= startColumn; i--) { | |
results[endRow][i] = counter; | |
counter++; | |
} | |
endRow--; | |
// Start Column | |
for (let i = endRow; i >= startRow; i--) { | |
results[i][startColumn] = counter; | |
counter++; | |
} | |
startColumn++; | |
} | |
return results; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment