feat: context, not config
This commit is contained in:
parent
a0171ee81e
commit
9e84d57b8a
15 changed files with 209 additions and 328 deletions
|
|
@ -272,8 +272,9 @@ def scrape_contests() -> list[ContestSummary]:
|
|||
r"[\uff01-\uff5e]", lambda m: chr(ord(m.group()) - 0xFEE0), name
|
||||
)
|
||||
|
||||
# Skip AtCoder Heuristic Contests (AHC) as they don't have standard sample tests
|
||||
if not contest_id.startswith("ahc"):
|
||||
if not (
|
||||
contest_id.startswith("ahc") or name.lower().find("heuristic") != -1
|
||||
):
|
||||
contests.append(
|
||||
ContestSummary(id=contest_id, name=name, display_name=name)
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue