1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/swift/transpose-matrix.swift

17 lines
370 B
Swift
Raw Normal View History

class Solution {
func transpose(_ matrix: [[Int]]) -> [[Int]] {
var m = Array(
repeating: Array(repeating: 0, count: matrix.count),
count: matrix[0].count
)
for y in 0..<matrix.count {
for x in 0..<matrix[y].count {
m[x][y] = matrix[y][x]
}
}
return m
}
}