diff options
author | Botond Hende <nettingman@gmail.com> | 2024-12-03 21:21:47 +0100 |
---|---|---|
committer | Botond Hende <nettingman@gmail.com> | 2024-12-03 21:21:47 +0100 |
commit | 755d3322abe7d94ae87e5624bb1aed85bfb30bc3 (patch) | |
tree | ea8a7afe1071167a17e3d63f574dad662abcedf1 /2024/day3/solve.py | |
parent | 873d769509c56ddbe84616d9411efc51ef0b4fd3 (diff) |
2024 day2-3, 2023 day3 2nd
Diffstat (limited to '2024/day3/solve.py')
-rw-r--r-- | 2024/day3/solve.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2024/day3/solve.py b/2024/day3/solve.py new file mode 100644 index 0000000..a651ff3 --- /dev/null +++ b/2024/day3/solve.py @@ -0,0 +1,12 @@ +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)
|