Skip to content

Commit

Permalink
Change inwer template
Browse files Browse the repository at this point in the history
  • Loading branch information
MasloMaslane committed Sep 25, 2023
1 parent 74c882b commit 3d3076e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example_package/prog/abcinwer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ int main() {
};
string subtasks_s;
for (auto [subtask_id, is_valid] : subtasks)
subtasks_s += is_valid ? to_string(subtask_id) : string("-");
subtasks_s += is_valid ? to_string(subtask_id) : string("_");

map<string, bool> sample_tests = {
{"0a", is_0a()},
{"1ocen", is_1ocen()},
};
string sample_test_s = "-";
string sample_test_s = "_";
for (auto [name, is_valid] : sample_tests)
if (is_valid)
sample_test_s = name;
Expand Down

0 comments on commit 3d3076e

Please sign in to comment.