mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
26 lines
417 B
Go
26 lines
417 B
Go
package main
|
|
|
|
func restoreMatrix(rowSum []int, colSum []int) [][]int {
|
|
rows, cols := len(rowSum), len(colSum)
|
|
|
|
matrix := make([][]int, rows)
|
|
for y := range rows {
|
|
matrix[y] = make([]int, cols)
|
|
}
|
|
|
|
y, x := 0, 0
|
|
for y < rows && x < cols {
|
|
matrix[y][x] = min(rowSum[y], colSum[x])
|
|
|
|
rowSum[y] -= matrix[y][x]
|
|
colSum[x] -= matrix[y][x]
|
|
|
|
if rowSum[y] == 0 {
|
|
y++
|
|
} else {
|
|
x++
|
|
}
|
|
}
|
|
|
|
return matrix
|
|
}
|