summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBotond Hende <nettingman@gmail.com>2024-12-02 01:21:24 +0100
committerBotond Hende <nettingman@gmail.com>2024-12-02 01:21:24 +0100
commit6474fe68d780e31151c52d6cab41ef119ed48e6c (patch)
treebd06013f88dd3dcea531e856ede27816f1b3ae91
parent47b13cbf685115ef0fa5be5a37b6b9583bc0230c (diff)
2024 day1 solution2
-rw-r--r--2024/day1/solve2.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/2024/day1/solve2.py b/2024/day1/solve2.py
new file mode 100644
index 0000000..8b00942
--- /dev/null
+++ b/2024/day1/solve2.py
@@ -0,0 +1,20 @@
+sum = 0
+
+list1 = []
+list2 = []
+
+with open("input") as f:
+ for line in f.readlines():
+ nums = line.split()
+ list1.append(int(nums[0]))
+ list2.append(int(nums[1]))
+
+memoize_count = {}
+
+for num in list1:
+ if num not in memoize_count.keys():
+ memoize_count[num] = list2.count(num)
+
+ sum += memoize_count[num] * num
+
+print(sum) \ No newline at end of file