6 lines
281 B
Markdown
6 lines
281 B
Markdown
# 1582. Special Positions in a Binary Matrix
|
|
|
|
Given an m x n binary matrix mat, return the number of special positions in mat.
|
|
|
|
A position (`i`, `j`) is called special if `mat[i][j]` == `1`
|
|
and all other elements in row `i` and column `j` are `0` (rows and columns are 0-indexed).
|