feat: alternative AC solution and TLE solution implemented, also wrote the tutorial for the problem and improved its description

This commit is contained in:
2025-11-12 10:56:03 -03:00
parent 063c8815c7
commit cf745f4cb4
12 changed files with 190 additions and 18 deletions

View File

@@ -24,7 +24,7 @@ vector<string> generate_sample_tests() {
vector<string> tests;
tests.push_back(output_tc(1, 1));
tests.push_back(output_tc(2, 2));
tests.push_back(output_tc(2, 3));
tests.push_back(output_tc(2, 1));
return tests;
}