1267. Count Servers that Communicate
Medium
You are given a map of a server center, represented as a m * n
integer matrix grid
, where 1 means that on that cell there is a server and 0 means that it is no server. Two servers are said to communicate if they are on the same row or on the same column.
Return the number of servers that communicate with any other server.
Example 1:
Example 2:
Example 3:
Constraints:
m == grid.length
n == grid[i].length
1 <= m <= 250
1 <= n <= 250
grid[i][j] == 0 or 1
解題
先記錄每一行跟列的電腦數後,再檢查每台電腦是否有其他電腦跟他同行或同列,有就加入答案中。
Last updated