fix(qol): remove ai-like comments

This commit is contained in:
Barrett Ruth 2025-09-21 14:00:38 -04:00
parent 45d439a7b2
commit fe158aa65f
3 changed files with 1 additions and 5 deletions

View file

@ -203,8 +203,6 @@ def scrape_contest_problems(contest_id: str) -> list[ProblemSummary]:
ProblemSummary(id=problem_letter, name=problem_name)
)
# Preserve contest order - do not sort
seen: set[str] = set()
unique_problems: list[ProblemSummary] = []
for p in problems: