8 lines
220 B
Python
8 lines
220 B
Python
def get_points_sums(standings: []):
|
|
sums = [0] * 4
|
|
for series in standings:
|
|
for round in series:
|
|
for player, points in enumerate(round):
|
|
sums[player] += points
|
|
return sums
|