

The value of M[i][j] should be 1.
All other cells of row i should be 0.
All other cells of column j should be 0.
For the matrix :
1 0 0
0 0 0
0 1 0
The Answer will be 2 as cell (0,0) and (2,1) are special.(Indexing is 0 based).
The first line of the input contains an integer, 'T,’ denoting the number of test cases.
The first line of each test case contains two integers,' N’ and ‘M’ denoting the number of rows and columns.
The next line of each test case has ‘N’ lines that have M values corresponding to the matrix ‘MAT’.
For each test case, print an integer corresponding to the number of special cells in the matrix.
Print the output of each test case in a separate line.
You do not need to print anything. It has already been taken care of. Just implement the given function.
1 <= T <= 10
1 <= N <= 1000.
1 <= M <= 1000.
Time limit: 1 sec
If we observe the special cells of the matrix, we will find a pattern that the row sum and column sum of the special cell must be 1 as it should not contain any other ‘1’ in the row or the column.
In this approach, we will iterate each cell of the matrix. Whenever we encounter a value MAT[i][j] as 1, we will simply traverse the ith row and jth column and calculate their sum. If both row sum and column sum are equal to 1, we will increment our ‘ANS’ and at the end, we will return the value of ‘ANS’.
We will optimize the above brute force by storing the sum of ROWS and COLUMN
So, we will prepare two arrays ‘ROWSUM’ and ‘COLSUM’ to store the sum of the ith row and ‘i’th column. After that, we will iterate over each cell of the matrix and if the cell has value 1 and ‘ROWSUM’ and ‘COLSUM’ is also 1, we found a special cell. We will increment our final answer.