summaryrefslogtreecommitdiff
path: root/2024/day3/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/day3/solve.py
parentcbf5c348db4a693b15e455a23e07072587edf4b0 (diff)
renamed day folders to two digit format
Diffstat (limited to '2024/day3/solve.py')
-rw-r--r--2024/day3/solve.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/2024/day3/solve.py b/2024/day3/solve.py
deleted file mode 100644
index a651ff3..0000000
--- a/2024/day3/solve.py
+++ /dev/null
@@ -1,12 +0,0 @@
-import re
-
-pattern = re.compile('mul\\(([0-9]{1,3}),([0-9]{1,3})\\)')
-
-with open("input") as f:
- data = f.read()
-
-result = 0
-for match in pattern.findall(data):
- result += int(match[0]) * int(match[1])
-
-print(result)