Skip to content

Commit 278cf9a

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

File tree

22 files changed

+15
-6
lines changed

22 files changed

+15
-6
lines changed

advent_of_code/year_2016/__init__.py

Whitespace-only changes.

advent_of_code/year_2016/day_01_no_time_for_taxicab/__init__.py

Whitespace-only changes.

advent-of-code/year_2016/day_01_no_time_for_taxicab/solution_day_01_2016.py renamed to advent_of_code/year_2016/day_01_no_time_for_taxicab/solution_day_01_2016.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, get_manhattan_distance
1+
from utils.aoc_utils import get_input_file_path, read_input_file, get_manhattan_distance
22

33

44
def solve_day_01_2016(filename: str) -> tuple[int, int] | str:

advent-of-code/year_2016/day_01_no_time_for_taxicab/test_day_01_2016.py renamed to advent_of_code/year_2016/day_01_no_time_for_taxicab/test_day_01_2016.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from dotenv import load_dotenv
33
from .solution_day_01_2016 import solve_day_01_2016
44

5-
load_dotenv
5+
load_dotenv()
66
environment = os.getenv("ENVIRONMENT")
77

88
filename_demo = "input_demo.txt"

advent_of_code/year_2016/day_02_bathroom_security/__init__.py

Whitespace-only changes.

advent-of-code/year_2016/day_02_bathroom_security/solution_day_02_2016.py renamed to advent_of_code/year_2016/day_02_bathroom_security/solution_day_02_2016.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 walk_keypad(
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## Day 03/2016: Squares With Three Sides
2+
3+
https://adventofcode.com/2016/day/3

0 commit comments

Comments
 (0)