
[LeetCode] 1267. Count Servers that Communicate (Python)
·
알고리즘/LeetCode
난이도: 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:Input: grid = [[1,0],[0,1]] Output: 0 Explan..