Skip to content

Commit bf2084f

Browse files
committed
chore(aoc): move the solutions and tests days 01,02,03,04,and 05/2017, to right folder
1 parent 278cf9a commit bf2084f

File tree

19 files changed

+15
-4
lines changed

19 files changed

+15
-4
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## Day 01/2017: Inverse Captcha
2+
3+
https://adventofcode.com/2017/day/1
4+

advent_of_code/year_2017/day_01_inverse_captcha/__init__.py

Whitespace-only changes.

advent-of-code/year_2017/day_01_inverse_captcha/solution_day_01_2017.py renamed to advent_of_code/year_2017/day_01_inverse_captcha/solution_day_01_2017.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 solve_day_01_2017(filename: str) -> tuple[int, int] | str:

advent-of-code/year_2017/day_02_corruption_checksum/solution_day_02_2017.py renamed to advent_of_code/year_2017/day_02_corruption_checksum/solution_day_02_2017.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from itertools import combinations
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 even_division_result(row: list[int]) -> int:
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## Day 03/2017: Spiral Memory
2+
3+
https://adventofcode.com/2017/day/3

advent_of_code/year_2017/day_03_spiral_memory/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)