forked from das-jishu/algoexpert-data-structures-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtournament-winner.py
52 lines (44 loc) · 1.16 KB
/
tournament-winner.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# TOURNAMENT WINNER
# O(N+K) time and O(K) space
def tournamentWinner(competitions, results):
# Write your code here.
teams = {}
i = 0
while i < len(competitions):
homeTeam = str(competitions[i][0])
awayTeam = str(competitions[i][1])
if results[i] == 1:
if homeTeam in teams:
teams[homeTeam] += 3
else:
teams[homeTeam] = 3
else:
if awayTeam in teams:
teams[awayTeam] += 3
else:
teams[awayTeam] = 3
i += 1
return max(teams, key=teams.get)
# O(N) time and O(K) space
def tournamentWinner(competitions, results):
# Write your code here.
teams = {"": 0}
i = 0
currentBestTeam = ""
while i < len(competitions):
homeTeam = str(competitions[i][0])
awayTeam = str(competitions[i][1])
if results[i] == 1:
if homeTeam in teams:
teams[homeTeam] += 3
else:
teams[homeTeam] = 3
currentBestTeam = homeTeam if teams[currentBestTeam] < teams[homeTeam] else currentBestTeam
else:
if awayTeam in teams:
teams[awayTeam] += 3
else:
teams[awayTeam] = 3
currentBestTeam = awayTeam if teams[currentBestTeam] < teams[awayTeam] else currentBestTeam
i += 1
return currentBestTeam