Microsoft Interview Question — LeetCode 1267

Y Tech
2 min readFeb 4, 2022

In this post, we are going to discuss leetcode 1267 — Count Servers that Communicate, which is asked in Microsoft interviews.

Problem Analysis

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.

--

--