Medium
You are given a grid of 0s and 1s where 1 marks a server. Two servers communicate if they lie in the same row or the same column. Return the number of servers that can communicate with at least one other server.
Input: grid = [[1,0],[0,1]] Output: 0
Input: grid = [[1,0],[1,1]] Output: 3