From 496c403ec164f8f135b559172a59760fd925f2b3 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Sat, 6 Dec 2025 10:36:40 -0800 Subject: [PATCH] Add link to puzzle on adventofcode.com --- aocsync.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/aocsync.py b/aocsync.py index e4befe7..7e58811 100755 --- a/aocsync.py +++ b/aocsync.py @@ -1929,9 +1929,10 @@ class HTMLGenerator: speed_multiple = speed_multiples.get((day, part), 0) row_history_modals = [] + aoc_url = f"https://adventofcode.com/{year}/day/{day}" html += f""" - Day {day} Part {part} + Day {day} Part {part} """ # Add timing data for each user @@ -2091,9 +2092,10 @@ class HTMLGenerator: continue for day in sorted(data[year].keys()): for part in sorted(data[year][day].keys()): + aoc_url = f"https://adventofcode.com/{year}/day/{day}" html += f""" {year} - {day} + {day} {part} """ for user in sorted(users):