Skip to content

Commit fa05e74

Browse files
committed
chore(aoc): move solutions and tests some days of 2024
1 parent 9d2e25b commit fa05e74

38 files changed

+37
-8
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## Day 01/2024: Historian Hysteria
2+
3+
https://adventofcode.com/2024/day/1
4+

advent_of_code/year_2024/day_01_historian_hysteria/__init__.py

Whitespace-only changes.

advent-of-code/year_2024/day_01_historian_hysteria/solution_day_01_2024.py renamed to advent_of_code/year_2024/day_01_historian_hysteria/solution_day_01_2024.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from collections import Counter
2-
from utils.file_utils import get_input_file_path, read_input_file
2+
from utils.aoc_utils import get_input_file_path, read_input_file
33

44

55
def solve_day_01_2024(filename: str) -> tuple[int, int]:

advent-of-code/year_2024/day_02_red_nosed_reports/solution_day_02_2024.py renamed to advent_of_code/year_2024/day_02_red_nosed_reports/solution_day_02_2024.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from utils.file_utils import get_input_file_path, read_input_file
1+
from utils.aoc_utils import get_input_file_path, read_input_file
22

33

44
def is_safe_levels(current_level: int, next_level: int) -> bool:
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## Day 03/2024: Mull It Over
2+
3+
https://adventofcode.com/2024/day/3

advent_of_code/year_2024/day_03_mull_it_over/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)