-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4-TournamentWinner.js
31 lines (27 loc) · 973 Bytes
/
4-TournamentWinner.js
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
function tournamentWinner(competitions, results) {
// Write your code here.
const comptetorMap = new Map();
let winnerPoints = 0;
let winnerName = "";
let points = 3;
let idx = 0;
for (let item of results) {
const currentComptetionWinnerIdx = item === 0 ? 1 : 0;
const currentComptetionWinner =
competitions[idx][currentComptetionWinnerIdx];
if (!comptetorMap.has(currentComptetionWinner)) {
comptetorMap.set(currentComptetionWinner, points);
} else {
const currentPoints = comptetorMap.get(currentComptetionWinner) + 3;
comptetorMap.set(currentComptetionWinner, currentPoints);
}
if (comptetorMap.get(currentComptetionWinner) > winnerPoints) {
winnerPoints = comptetorMap.get(currentComptetionWinner);
winnerName = currentComptetionWinner;
}
idx += 1;
}
return winnerName;
}
// Do not edit the line below.
exports.tournamentWinner = tournamentWinner;