Skip to content

Commit

Permalink
Add day 8 outline
Browse files Browse the repository at this point in the history
  • Loading branch information
mjalkio committed Dec 27, 2023
1 parent c9f10bf commit 7e0c27d
Show file tree
Hide file tree
Showing 6 changed files with 787 additions and 0 deletions.
Empty file added year_2023/day08/__init__.py
Empty file.
12 changes: 12 additions & 0 deletions year_2023/day08/haunted_wasteland.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from util import read_puzzle_input


def get_num_steps(puzzle_input):
return 0


if __name__ == "__main__":
puzzle_input = read_puzzle_input()

print(f"Part 1: {get_num_steps(puzzle_input)}")
print(f"Part 2: {get_num_steps(puzzle_input)}")
Loading

0 comments on commit 7e0c27d

Please sign in to comment.