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 4c23678 commit e0e49c4Copy full SHA for e0e49c4
Makefile
@@ -27,4 +27,10 @@ solutions:
27
python3 src/advent_of_code/year_2023/days/2.py --input_file inputs/2023/2.txt
28
python3 src/advent_of_code/year_2023/days/3.py --input_file inputs/2023/3.txt
29
python3 src/advent_of_code/year_2023/days/4.py --input_file inputs/2023/4.txt
30
- python3 src/advent_of_code/year_2023/days/6.py --input_file inputs/2023/6.txt
+ python3 src/advent_of_code/year_2023/days/6.py --input_file inputs/2023/6.txt
31
+
32
+.PHONY: new-day-skeleton-files-from-template
33
+new-day-skeleton-files-from-template:
34
+ @read -p "Enter year: " year; \
35
+ read -p "Enter day: " day; \
36
+ python3 src/advent_of_code/scripts/generate_new_day_skeleton_files_from_templates.py --day $$day --year $$year
0 commit comments