blob: 627bac40fca9847b6fe230d2170ff7e65738bc86 (
plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#!/usr/bin/env ruby
def directions_for_values(values)
directions = []
values.each_with_index do |value, index|
next if index.zero?
distance = (value.to_i - values[index-1].to_i)
direction = if (distance.abs > 3 )
:err
elsif distance > 0
:up
elsif distance < 0
:down
else
:err
end
directions << direction
end
return 0 if directions.count(:err) > 1
directions.uniq.count == 1 ? 1 : 0
end
data = File.read("data.txt")
data = data.split("\n")
data = data.map(&:split)
safe_arr = data.map do |row|
results = [directions_for_values(row)]
row.each_with_index do |value, index|
tmp_arr = row.dup
tmp_arr.delete_at(index)
results << directions_for_values(tmp_arr)
end
results
end.map(&:sum)
p safe_arr.count { |row| row > 0 }
|