generated from public/aoc_template
the year is 2025 ...
This commit is contained in:
parent
448133da2c
commit
9b11bec788
@ -1,4 +1,5 @@
|
||||
# Advent Of Code 2025
|
||||
|
||||
<!-- AOC TILES BEGIN -->
|
||||
|
||||
<!-- AOC TILES END -->
|
||||
2
main.py
2
main.py
@ -5,7 +5,7 @@ import argparse
|
||||
import importlib
|
||||
import os
|
||||
|
||||
YEAR = 2018
|
||||
YEAR = 2025
|
||||
TIMEIT_NUMBER = 50
|
||||
|
||||
argument_parser = argparse.ArgumentParser()
|
||||
|
||||
4
start_day.py
Normal file → Executable file
4
start_day.py
Normal file → Executable file
@ -9,7 +9,7 @@ from tools.tools import human_readable_time_from_delta
|
||||
import webbrowser
|
||||
|
||||
|
||||
YEAR = 2018
|
||||
YEAR = 2025
|
||||
CHARMS = {
|
||||
'Linux': '/usr/local/bin/charm',
|
||||
'Windows': r'C:\Users\pennywise\AppData\Local\JetBrains\Toolbox\scripts\pycharm.cmd'
|
||||
@ -21,7 +21,7 @@ args = arg_parser.parse_args()
|
||||
|
||||
DAY = args.day or datetime.now().day
|
||||
|
||||
if YEAR < 2015 or not 1 <= DAY <= 25:
|
||||
if YEAR < 2015 or not 1 <= DAY <= 12:
|
||||
print("Invalid year or day for year: %d, day: %d" % (YEAR, DAY))
|
||||
exit()
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user