1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/go/find-valid-matrix-given-row-and-column-sums.go
2024-07-20 22:18:52 +02:00

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
}