forked from soapyigu/LeetCode-Swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SpiralMatrixII.swift
53 lines (44 loc) · 1.31 KB
/
SpiralMatrixII.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
* Question Link: https://leetcode.com/problems/spiral-matrix-ii/
* Primary idea: Go from clockwise and populate number, remember to handle the center one
*
* Time Complexity: O(n^2), Space Complexity: O(1)
*/
class SpiralMatrixII {
func generateMatrix(_ n: Int) -> [[Int]] {
guard n > 0 else {
return [[Int]]()
}
var num = 1
var res = Array(repeating: Array(repeating: 0, count: n), count: n)
for layer in 0..<n / 2 {
let start = layer
let end = n - layer - 1
// top
for i in start..<end {
res[start][i] = num
num += 1
}
// right
for i in start..<end {
res[i][end] = num
num += 1
}
// bottom
for i in stride(from: end, to: start, by: -1) {
res[end][i] = num
num += 1
}
// left
for i in stride(from: end, to: start, by: -1) {
res[i][start] = num
num += 1
}
}
// handle the center one
if n % 2 != 0 {
res[n / 2][n / 2] = n * n
}
return res
}
}