aboutsummaryrefslogtreecommitdiff
path: root/problems/raidtime/attachments/template.js
blob: e2df26065e27216401363291526e5b7cf639bbe2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
const w = parseInt(readline());
for (let i = 0; i < w; i++) {
    const wall = readline();
}
const d = parseInt(readline());
for (let i = 0; i < d; i++) {
    const door = readline();
}

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

console.log('0 C4 needed to go through 0 walls');