aboutsummaryrefslogtreecommitdiff
path: root/problems/wordle/attachments/template.cpp
blob: 56b286095acbef8ee25b3a403a81b9aa2296e20d (plain)
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
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>

using namespace std;

int main()
{
    string solution;
    getline(cin, solution);
    int n;
    cin >> n; cin.ignore();
    for (int i = 0; i < n; i++) {
        string guess;
        getline(cin, guess);
    }
    for (int i = 0; i < n; i++) {

        // Write an answer using cout. DON'T FORGET THE "<< endl"
        // To debug: cerr << "Debug messages..." << endl;

        cout << "__G_Y" << endl;
    }
}