aboutsummaryrefslogtreecommitdiff
path: root/problems/wordle/attachments/template.js
blob: 6d468466f9caa98d684b3c86b8390b9fc6cb7719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
const solution = readline();
const n = parseInt(readline());
for (let i = 0; i < n; i++) {
    const guess = readline();
}
for (let i = 0; i < n; i++) {

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

    console.log('__G_Y');
}