feat: new statement files. Generator generated. New TLE solution

This commit is contained in:
2025-12-03 20:44:14 -03:00
parent bf6ef948b9
commit 6542a90f82
118 changed files with 296 additions and 6 deletions

View File

@@ -14,6 +14,7 @@ template <typename T> void append(vector<T> &dest, const vector<T> &orig) {
string output_tc(const string &x, const string &y) {
ostringstream oss;
oss << x.size() << " " << y.size() << endl;
oss << x << " " << y << endl;
return oss.str();
}