solved part 1
parent
2e6214919d
commit
e60e40ccb2
|
@ -0,0 +1,11 @@
|
|||
16
|
||||
10
|
||||
15
|
||||
5
|
||||
1
|
||||
11
|
||||
7
|
||||
19
|
||||
6
|
||||
12
|
||||
4
|
|
@ -0,0 +1,11 @@
|
|||
#!/bin/env ruby
|
||||
require 'pry'
|
||||
numbers = File.read('./input').split("\n").map(&:to_i).sort
|
||||
|
||||
solution = numbers.map.with_index do |num, i|
|
||||
next if i == 0
|
||||
num - numbers[i-1]
|
||||
end
|
||||
#binding.pry
|
||||
final = [solution.count(1)+1, solution.count(3)+1]
|
||||
pp final, final.reduce(&:*)
|
Loading…
Reference in New Issue