-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path01.rb
26 lines (18 loc) · 1003 Bytes
/
01.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# https://adventofcode.com/2024/day/1
input_lines = File.readlines('input01.txt')
loc_id_lists = input_lines.map { |line| line.split.map(&:to_i) }.transpose
########################################################################################################################
# 1
########################################################################################################################
loc_ids1_sorted = loc_id_lists[0].sort
loc_ids2_sorted = loc_id_lists[1].sort
puts loc_ids1_sorted.each_with_index.sum { |id1, index| (id1 - loc_ids2_sorted[index]).abs }
# 1882714
########################################################################################################################
# 2
########################################################################################################################
loc_ids1 = loc_id_lists[0]
loc_ids2 = loc_id_lists[1]
loc_ids2_tallied = loc_ids2.tally
puts loc_ids1.sum { |item| item * (loc_ids2_tallied[item] || 0) }
# 19437052