diff options
author | Botond Hende <nettingman@gmail.com> | 2024-12-11 10:18:23 +0100 |
---|---|---|
committer | Botond Hende <nettingman@gmail.com> | 2024-12-11 10:18:23 +0100 |
commit | 0a5c1f77d01fc0bd166494787f24562e2fd3a9e9 (patch) | |
tree | 99b0d38ef86653b6ff4aae26381ebdf0895f829d /2024/day01/solve2.py | |
parent | cbf5c348db4a693b15e455a23e07072587edf4b0 (diff) |
renamed day folders to two digit format
Diffstat (limited to '2024/day01/solve2.py')
-rw-r--r-- | 2024/day01/solve2.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2024/day01/solve2.py b/2024/day01/solve2.py new file mode 100644 index 0000000..8b00942 --- /dev/null +++ b/2024/day01/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 |