We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f01620b commit 2318c4fCopy full SHA for 2318c4f
src/download_input.py
@@ -26,6 +26,10 @@ def download(year, day):
26
output_path = next(year_path.glob(f"{day:02d}*")) / "input.txt"
27
output_path.write_text(puzzle.input_data)
28
29
+ # Download example data
30
+ output_path = output_path.with_stem("example1")
31
+ output_path.write_text(puzzle.example_data)
32
+
33
# Add README with link to puzzle text
34
readme_path = output_path.with_name("README.md")
35
readme_path.write_text(
0 commit comments