class Solution:
def findChampion(self, grid: List[List[int]]) -> int:
n = len(grid)
strongerthancount = [0]*n
for i in range(n):
for j in range(n):
if i != j:
strongerthancount[i] += grid[i][j]
return strongerthancount.index(max(strongerthancount))