fix(scraper/codeforces): scrape multiple tc

This commit is contained in:
Barrett Ruth 2025-09-18 13:30:53 -04:00
parent 66b7db6da4
commit 91e066bbd6
4 changed files with 20 additions and 19 deletions

View file

@ -200,8 +200,7 @@ def main() -> None:
test_list: list[dict[str, str]] = []
for input_data, output_data in tests:
normalized_input = "1\n" + input_data
test_list.append({"input": normalized_input, "expected": output_data})
test_list.append({"input": input_data, "expected": output_data})
result = {
"success": True,