summaryrefslogtreecommitdiff
path: root/2024/day6/solve.py
diff options
context:
space:
mode:
authorBotond Hende <nettingman@gmail.com>2024-12-11 10:18:23 +0100
committerBotond Hende <nettingman@gmail.com>2024-12-11 10:18:23 +0100
commit0a5c1f77d01fc0bd166494787f24562e2fd3a9e9 (patch)
tree99b0d38ef86653b6ff4aae26381ebdf0895f829d /2024/day6/solve.py
parentcbf5c348db4a693b15e455a23e07072587edf4b0 (diff)
renamed day folders to two digit format
Diffstat (limited to '2024/day6/solve.py')
-rw-r--r--2024/day6/solve.py55
1 files changed, 0 insertions, 55 deletions
diff --git a/2024/day6/solve.py b/2024/day6/solve.py
deleted file mode 100644
index 7e8a972..0000000
--- a/2024/day6/solve.py
+++ /dev/null
@@ -1,55 +0,0 @@
-import sys
-
-lines = []
-with open("input") as f:
- for line in f.readlines():
- lines.append(list(line.strip()))
-
-found_guard = False
-guard_row_idx = None
-guard_col_idx = None
-direction = None
-
-directions = [(-1, 0), (0, 1), (1, 0), (0, -1)]
-
-for line_idx, line in enumerate(lines):
- for icon_idx, guard_icon in enumerate(("^", ">", "v", "<")):
- if guard_icon in line:
- guard_row_idx = line_idx
- guard_col_idx = line.index(guard_icon)
- direction = directions[icon_idx]
- found_guard = True
- break
-
- if found_guard:
- break
-
-if not found_guard:
- sys.exit("Could not found guard.")
-
-row_count = len(lines)
-col_count = len(lines[0])
-while True:
- lines[guard_row_idx][guard_col_idx] = "X"
- new_row_idx = guard_row_idx + direction[0]
- new_col_idx = guard_col_idx + direction[1]
-
- if new_row_idx < 0 or new_row_idx >= row_count or new_col_idx < 0 or new_col_idx >= col_count:
- break
-
- if lines[new_row_idx][new_col_idx] == "#":
- dir_idx = directions.index(direction)
- if dir_idx == len(directions) - 1:
- dir_idx = 0
- else:
- dir_idx += 1
- direction = directions[dir_idx]
- else:
- guard_row_idx = new_row_idx
- guard_col_idx = new_col_idx
-
-count = 0
-for line in lines:
- count += line.count("X")
-
-print(count)