aboutsummaryrefslogtreecommitdiff
path: root/problems/gameofquarters/attachments/template.js
blob: aa2903dba723fe13ba7a4b9f84d6e56db9b3b041 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
const numberOfRounds = parseInt(readline());
for (let i = 0; i < numberOfRounds; i++) {
    var inputs = readline().split(' ');
    const aliceSequence = inputs[0];
    const bobSequence = inputs[1];
    const roundTosses = inputs[2];
}

// Write an answer using console.log()
// To debug: console.error('Debug messages...');

console.log('WINNER!');